From 3a84ddb9c5d15d48ea2a5ccb201d8e4539989b03 Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 11:29:18 +0000 Subject: [PATCH 01/12] - font default at "16px" --- .../settings/FontSizeSettingsCard.tsx | 50 +++++++++++++++---- echo/frontend/src/hooks/useAppPreferences.tsx | 14 ++++-- echo/frontend/src/index.css | 1 - 3 files changed, 51 insertions(+), 14 deletions(-) diff --git a/echo/frontend/src/components/settings/FontSizeSettingsCard.tsx b/echo/frontend/src/components/settings/FontSizeSettingsCard.tsx index c250401f..cf6538f8 100644 --- a/echo/frontend/src/components/settings/FontSizeSettingsCard.tsx +++ b/echo/frontend/src/components/settings/FontSizeSettingsCard.tsx @@ -1,5 +1,12 @@ import { Trans } from "@lingui/react/macro"; -import { Card, Group, SegmentedControl, Stack, Text, Title } from "@mantine/core"; +import { + Card, + Group, + SegmentedControl, + Stack, + Text, + Title, +} from "@mantine/core"; import { IconTextSize } from "@tabler/icons-react"; import { type FontSizeScale, @@ -12,11 +19,36 @@ const FONT_SIZE_OPTIONS: { px: { "dm-sans": number; "space-grotesk": number }; visualSize: number; }[] = [ - { value: "xs", label: "A", px: { "dm-sans": 14, "space-grotesk": 12 }, visualSize: 10 }, - { value: "small", label: "A", px: { "dm-sans": 16, "space-grotesk": 14 }, visualSize: 13 }, - { value: "normal", label: "A", px: { "dm-sans": 18, "space-grotesk": 16 }, visualSize: 16 }, - { value: "large", label: "A", px: { "dm-sans": 20, "space-grotesk": 18 }, visualSize: 19 }, - { value: "xl", label: "A", px: { "dm-sans": 22, "space-grotesk": 20 }, visualSize: 22 }, + { + label: "A", + px: { "dm-sans": 12, "space-grotesk": 12 }, + value: "xs", + visualSize: 10, + }, + { + label: "A", + px: { "dm-sans": 14, "space-grotesk": 14 }, + value: "small", + visualSize: 13, + }, + { + label: "A", + px: { "dm-sans": 16, "space-grotesk": 16 }, + value: "normal", + visualSize: 16, + }, + { + label: "A", + px: { "dm-sans": 18, "space-grotesk": 18 }, + value: "large", + visualSize: 19, + }, + { + label: "A", + px: { "dm-sans": 20, "space-grotesk": 20 }, + value: "xl", + visualSize: 22, + }, ]; export const FontSizeSettingsCard = () => { @@ -44,7 +76,6 @@ export const FontSizeSettingsCard = () => { value={preferences.fontSizeScale} onChange={(value) => setFontSizeScale(value as FontSizeScale)} data={FONT_SIZE_OPTIONS.map((opt) => ({ - value: opt.value, label: ( { {opt.label} ), + value: opt.value, }))} /> @@ -63,9 +95,7 @@ export const FontSizeSettingsCard = () => { - - Preview: The quick brown fox jumps over the lazy dog. - + Preview: The quick brown fox jumps over the lazy dog. diff --git a/echo/frontend/src/hooks/useAppPreferences.tsx b/echo/frontend/src/hooks/useAppPreferences.tsx index 4980a6c7..8d1b2fe2 100644 --- a/echo/frontend/src/hooks/useAppPreferences.tsx +++ b/echo/frontend/src/hooks/useAppPreferences.tsx @@ -124,8 +124,14 @@ export const AppPreferencesProvider = ({ // Base font size depends on both font family and scale const fontSizeMap = isDmSans - ? { xs: "14px", small: "16px", normal: "18px", large: "20px", xl: "22px" } - : { xs: "12px", small: "14px", normal: "16px", large: "18px", xl: "20px" }; + ? { large: "18px", normal: "16px", small: "14px", xl: "20px", xs: "12px" } + : { + large: "18px", + normal: "16px", + small: "14px", + xl: "20px", + xs: "12px", + }; const baseFontSize = fontSizeMap[scale]; // Space Grotesk: Original Mantine-based sizes with medium weight @@ -275,7 +281,9 @@ export const AppPreferencesProvider = ({ }, [preferences.fontFamily, preferences.fontSizeScale]); return ( - + {children} ); diff --git a/echo/frontend/src/index.css b/echo/frontend/src/index.css index 7d3e68bf..c180ca27 100644 --- a/echo/frontend/src/index.css +++ b/echo/frontend/src/index.css @@ -17,7 +17,6 @@ /* Space Grotesk (default) → White + Black */ /* DM Sans → Parchment + Graphite */ :root { - /* DM Sans (default) uses 18px, Space Grotesk uses 16px */ /* Dynamically updated by useAppPreferences based on font selection */ --app-base-font-size: 16px; From c5aa8c3195369a6526599b2263188f27d08c021a Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 11:34:07 +0000 Subject: [PATCH 02/12] - home icon size consistency --- echo/frontend/src/hooks/useAppPreferences.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo/frontend/src/hooks/useAppPreferences.tsx b/echo/frontend/src/hooks/useAppPreferences.tsx index 8d1b2fe2..44103050 100644 --- a/echo/frontend/src/hooks/useAppPreferences.tsx +++ b/echo/frontend/src/hooks/useAppPreferences.tsx @@ -196,7 +196,7 @@ export const AppPreferencesProvider = ({ }; // Icon sizes: DM Sans uses larger icons to match the bolder typography - const homeIconSize = isDmSans ? "40px" : "30px"; + const homeIconSize = typography?.h2Size ?? "2.369rem"; // Set base font size root.style.setProperty("--app-base-font-size", baseFontSize); From 85abf6c094e325f8ccce89679751cb2bb9d80743 Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 12:27:53 +0000 Subject: [PATCH 03/12] - "Beta" badge color updates --- .../src/components/chat/ChatModeBanner.tsx | 12 +-- .../src/components/chat/ChatModeSelector.tsx | 12 +-- .../conversation/MoveConversationButton.tsx | 2 +- .../conversation/RetranscribeConversation.tsx | 4 +- .../project/ProjectPortalEditor.tsx | 80 +++++++++++++------ .../project/report/ProjectReportRoute.tsx | 2 +- 6 files changed, 60 insertions(+), 52 deletions(-) diff --git a/echo/frontend/src/components/chat/ChatModeBanner.tsx b/echo/frontend/src/components/chat/ChatModeBanner.tsx index bac17ca0..4dbfef97 100644 --- a/echo/frontend/src/components/chat/ChatModeBanner.tsx +++ b/echo/frontend/src/components/chat/ChatModeBanner.tsx @@ -38,17 +38,7 @@ export const ChatModeBanner = ({ )} {isOverview && ( - + Beta )} diff --git a/echo/frontend/src/components/chat/ChatModeSelector.tsx b/echo/frontend/src/components/chat/ChatModeSelector.tsx index cdf69396..4f13d874 100644 --- a/echo/frontend/src/components/chat/ChatModeSelector.tsx +++ b/echo/frontend/src/components/chat/ChatModeSelector.tsx @@ -138,17 +138,7 @@ const ModeCard = ({ {title} {isBeta && ( - + Beta )} diff --git a/echo/frontend/src/components/conversation/MoveConversationButton.tsx b/echo/frontend/src/components/conversation/MoveConversationButton.tsx index 1c514377..a3319a32 100644 --- a/echo/frontend/src/components/conversation/MoveConversationButton.tsx +++ b/echo/frontend/src/components/conversation/MoveConversationButton.tsx @@ -138,7 +138,7 @@ export const MoveConversationButton = ({ {...testId("conversation-move-button")} > - + Beta Move to Another Project diff --git a/echo/frontend/src/components/conversation/RetranscribeConversation.tsx b/echo/frontend/src/components/conversation/RetranscribeConversation.tsx index 3dff9ef1..85bdf901 100644 --- a/echo/frontend/src/components/conversation/RetranscribeConversation.tsx +++ b/echo/frontend/src/components/conversation/RetranscribeConversation.tsx @@ -22,8 +22,8 @@ import { useI18nNavigate } from "@/hooks/useI18nNavigate"; import { analytics } from "@/lib/analytics"; import { AnalyticsEvents as events } from "@/lib/analyticsEvents"; import { testId } from "@/lib/testUtils"; -import { useProjectById } from "../project/hooks"; import { ExponentialProgress } from "../common/ExponentialProgress"; +import { useProjectById } from "../project/hooks"; import { useRetranscribeConversationMutation } from "./hooks"; export const RetranscribeConversationModalActionIcon = ({ @@ -131,7 +131,7 @@ export const RetranscribeConversationModal = ({ title={ {t`Retranscribe Conversation`} - + Beta diff --git a/echo/frontend/src/components/project/ProjectPortalEditor.tsx b/echo/frontend/src/components/project/ProjectPortalEditor.tsx index 3d764581..a5f3b5bb 100644 --- a/echo/frontend/src/components/project/ProjectPortalEditor.tsx +++ b/echo/frontend/src/components/project/ProjectPortalEditor.tsx @@ -40,15 +40,15 @@ import { useProjectSharingLink } from "./ProjectQRCode"; import { ProjectTagsInput } from "./ProjectTagsInput"; const FormSchema = z.object({ + anonymize_transcripts: z.boolean(), conversation_title_prompt: z.string(), - default_conversation_ask_for_participant_name: z.boolean(), default_conversation_ask_for_participant_email: z.boolean(), + default_conversation_ask_for_participant_name: z.boolean(), default_conversation_description: z.string(), default_conversation_finish_text: z.string(), default_conversation_title: z.string(), default_conversation_transcript_prompt: z.string(), default_conversation_tutorial_slug: z.string(), - anonymize_transcripts: z.boolean(), enable_ai_title_and_tags: z.boolean(), get_reply_mode: z.string(), get_reply_prompt: z.string(), @@ -252,11 +252,12 @@ const ProjectPortalEditorComponent: React.FC = ({ : "none"; return { + anonymize_transcripts: project.anonymize_transcripts ?? false, conversation_title_prompt: project.conversation_title_prompt ?? "", - default_conversation_ask_for_participant_name: - project.default_conversation_ask_for_participant_name ?? false, default_conversation_ask_for_participant_email: project.default_conversation_ask_for_participant_email ?? false, + default_conversation_ask_for_participant_name: + project.default_conversation_ask_for_participant_name ?? false, default_conversation_description: project.default_conversation_description ?? "", default_conversation_finish_text: @@ -265,7 +266,6 @@ const ProjectPortalEditorComponent: React.FC = ({ default_conversation_transcript_prompt: project.default_conversation_transcript_prompt ?? "", default_conversation_tutorial_slug: normalizedTutorialSlug ?? "none", - anonymize_transcripts: project.anonymize_transcripts ?? false, enable_ai_title_and_tags: project.enable_ai_title_and_tags ?? false, get_reply_mode: project.get_reply_mode ?? "summarize", get_reply_prompt: project.get_reply_prompt ?? "", @@ -532,9 +532,7 @@ const ProjectPortalEditorComponent: React.FC = ({ /> } description={ - - Optional field on the start page - + Optional field on the start page } checked={field.value} onChange={(e) => @@ -563,9 +561,7 @@ const ProjectPortalEditorComponent: React.FC = ({ /> } description={ - - Optional field on the thank you page - + Optional field on the thank you page } checked={field.value} onChange={(e) => @@ -638,7 +634,7 @@ const ProjectPortalEditorComponent: React.FC = ({ Explore - + Beta @@ -845,7 +841,7 @@ const ProjectPortalEditorComponent: React.FC = ({ - + Beta @@ -1174,13 +1170,16 @@ const ProjectPortalEditorComponent: React.FC = ({ <Trans>Anonymize Transcripts</Trans> - + Beta - When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations. + When enabled, all new transcripts will have personal + information (names, emails, phone numbers, addresses) + replaced with placeholders. This cannot be undone for + already-processed conversations. = ({ label={ } checked={field.value} - onChange={(e) => field.onChange(e.currentTarget.checked)} + onChange={(e) => + field.onChange(e.currentTarget.checked) + } /> )} /> @@ -1207,13 +1212,17 @@ const ProjectPortalEditorComponent: React.FC = ({ <Trans>Auto-generate Titles</Trans> - + Beta - Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one. + Automatically generate a short topic-based title for + each conversation after summarization. The title + describes what was discussed, not who participated. The + participant's original name is preserved separately, if + they provided one. = ({ label={ } checked={field.value} - onChange={(e) => field.onChange(e.currentTarget.checked)} + onChange={(e) => + field.onChange(e.currentTarget.checked) + } /> )} /> @@ -1242,11 +1258,23 @@ const ProjectPortalEditorComponent: React.FC = ({ label={ } - description={Guide how titles are generated. Titles describe the topic of the conversation, not the participant.} + description={ + + Guide how titles are generated. Titles describe + the topic of the conversation, not the + participant. + + } placeholder={t`e.g. "Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles."`} autosize minRows={2} diff --git a/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx b/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx index b5e5777f..32bc0d17 100644 --- a/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx +++ b/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx @@ -59,7 +59,7 @@ export const ReportLayout = ({ <Trans>Report</Trans> - + Beta From c124770feb702087cf8ac08ef090c46f47fa7935 Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 15:13:00 +0000 Subject: [PATCH 04/12] - "Download QR Code" button added right after "Copy Link" button - removed right-click context option on "QR Code" right click --- .../src/components/project/ProjectQRCode.tsx | 88 ++++++------------- 1 file changed, 27 insertions(+), 61 deletions(-) diff --git a/echo/frontend/src/components/project/ProjectQRCode.tsx b/echo/frontend/src/components/project/ProjectQRCode.tsx index ee139d78..31bf339d 100644 --- a/echo/frontend/src/components/project/ProjectQRCode.tsx +++ b/echo/frontend/src/components/project/ProjectQRCode.tsx @@ -16,10 +16,8 @@ import { IconDownload, IconExternalLink, IconPresentation, - IconShare, } from "@tabler/icons-react"; -import { useEffect, useRef, useState } from "react"; -import { useMemo } from "react"; +import { useMemo, useRef, useState } from "react"; import { PARTICIPANT_BASE_URL } from "@/config"; import { useAppPreferences } from "@/hooks/useAppPreferences"; import { testId } from "@/lib/testUtils"; @@ -80,10 +78,6 @@ export const useProjectSharingLink = (project?: Project) => { export const ProjectQRCode = ({ project }: ProjectQRCodeProps) => { const link = useProjectSharingLink(project); const [qrHovered, setQrHovered] = useState(false); - const [contextMenu, setContextMenu] = useState<{ - x: number; - y: number; - } | null>(null); const qrRef = useRef(null); const handleOpenHostGuide = () => { @@ -102,48 +96,29 @@ export const ProjectQRCode = ({ project }: ProjectQRCodeProps) => { downloadLink.download = `qr-${project?.name || "code"}.png`; downloadLink.href = canvas.toDataURL("image/png"); downloadLink.click(); - setContextMenu(null); }; - const handleQRContextMenu = (e: React.MouseEvent) => { - e.preventDefault(); - setContextMenu({ x: e.clientX, y: e.clientY }); - }; - - // Close context menu on click outside or escape - useEffect(() => { - if (!contextMenu) return; - const handleClick = () => setContextMenu(null); - const handleKeyDown = (e: KeyboardEvent) => { - if (e.key === "Escape") setContextMenu(null); - }; - document.addEventListener("click", handleClick); - document.addEventListener("keydown", handleKeyDown); - return () => { - document.removeEventListener("click", handleClick); - document.removeEventListener("keydown", handleKeyDown); - }; - }, [contextMenu]); - if (!link) { return ; } - let canShare = false; - try { - if (navigator.canShare) { - canShare = navigator.canShare({ - title: "Join the conversation on Dembrane", - url: link, - }); - } - } catch (e) { - console.error(e); - } - // Quick start is only available for supported languages - const supportedLanguages = ["en", "nl", "de", "fr", "es", "it", "en-US", "nl-NL", "de-DE", "fr-FR", "es-ES", "it-IT"]; - const showQuickStart = project?.language && supportedLanguages.includes(project.language); + const supportedLanguages = [ + "en", + "nl", + "de", + "fr", + "es", + "it", + "en-US", + "nl-NL", + "de-DE", + "fr-FR", + "es-ES", + "it-IT", + ]; + const showQuickStart = + project?.language && supportedLanguages.includes(project.language); return ( { onMouseEnter={() => setQrHovered(true)} onMouseLeave={() => setQrHovered(false)} onClick={() => window.open(link, "_blank")} - onContextMenu={handleQRContextMenu} {...testId("project-qr-code")} > @@ -174,7 +148,7 @@ export const ProjectQRCode = ({ project }: ProjectQRCodeProps) => { }} > @@ -210,6 +184,15 @@ export const ProjectQRCode = ({ project }: ProjectQRCodeProps) => { )} + {/* Share button - commented out {canShare && ( - - )} ); }; From f6eab6d0f7c142277b3a968e384a200f7a962ffc Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 15:21:33 +0000 Subject: [PATCH 05/12] - "Beta" labels made small for better visibility in "portal-editor" and "report" --- .../src/components/project/ProjectPortalEditor.tsx | 8 ++++---- .../src/routes/project/report/ProjectReportRoute.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/echo/frontend/src/components/project/ProjectPortalEditor.tsx b/echo/frontend/src/components/project/ProjectPortalEditor.tsx index a5f3b5bb..c2ab60dd 100644 --- a/echo/frontend/src/components/project/ProjectPortalEditor.tsx +++ b/echo/frontend/src/components/project/ProjectPortalEditor.tsx @@ -634,7 +634,7 @@ const ProjectPortalEditorComponent: React.FC = ({ Explore - + Beta @@ -841,7 +841,7 @@ const ProjectPortalEditorComponent: React.FC = ({ - + Beta @@ -1170,7 +1170,7 @@ const ProjectPortalEditorComponent: React.FC = ({ <Trans>Anonymize Transcripts</Trans> - + Beta @@ -1212,7 +1212,7 @@ const ProjectPortalEditorComponent: React.FC = ({ <Trans>Auto-generate Titles</Trans> - + Beta diff --git a/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx b/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx index 32bc0d17..018e4632 100644 --- a/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx +++ b/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx @@ -59,7 +59,7 @@ export const ReportLayout = ({ <Trans>Report</Trans> - + Beta From a01e1290c44d7eb40fdbe4a9679df43422274f02 Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 9 Feb 2026 17:22:34 +0000 Subject: [PATCH 06/12] - settings audit logs table extra right-padding fix --- echo/frontend/src/components/settings/AuditLogsCard.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/echo/frontend/src/components/settings/AuditLogsCard.tsx b/echo/frontend/src/components/settings/AuditLogsCard.tsx index a11b3bd3..db0e7399 100644 --- a/echo/frontend/src/components/settings/AuditLogsCard.tsx +++ b/echo/frontend/src/components/settings/AuditLogsCard.tsx @@ -513,10 +513,7 @@ export const AuditLogsCard = () => { ) : null} - + {table.getHeaderGroups().map((headerGroup) => ( From 687d5d81c7db7d04affe7f502ec485ec92d987db Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 11:02:19 +0000 Subject: [PATCH 07/12] - translations added --- echo/frontend/src/locales/de-DE.po | 1946 ++++++++++++++++----------- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 1822 +++++++++++++++----------- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 1948 ++++++++++++++++----------- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 1954 ++++++++++++++++----------- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 1840 +++++++++++++++----------- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 1959 ++++++++++++++++------------ echo/frontend/src/locales/nl-NL.ts | 2 +- 12 files changed, 6805 insertions(+), 4676 deletions(-) diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index 526c056f..a5af6bc0 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -40,17 +40,17 @@ msgid "Something went wrong" msgstr "Etwas ist schief gelaufen" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "Wir bereiten deinen Arbeitsbereich vor." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Dein Dashboard wird vorbereitet" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Willkommen zurück" @@ -80,11 +80,81 @@ msgstr "Willkommen zurück" #~ msgstr "Wir haben deine Aufnahme bis <0>{formattedDuration} gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "Tiefer eintauchen" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "Konkret machen" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Verfeinern\" bald verfügbar" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Funktion bald verfügbar" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Tiefer eintauchen" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "Fehler beim Laden des Artefakts. Versuch es gleich nochmal." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Konkrete Themen" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Konkret machen" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Verfeinern" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Artefakt wird neu erstellt…" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Wähl ein konkretes Thema aus." + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Da ist was schiefgelaufen. Versuch es gleich nochmal." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "Artefakt konnte nicht geladen werden" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr "Die Bibliothek wird {duration} dauern." -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr " Absenden" @@ -96,41 +166,41 @@ msgstr " Von Benachrichtigungen abmelden" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "Tiefer eintauchen" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" bald verfügbar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "Konkret machen" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Erkunden\" bald verfügbar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Verfeinern\" bald verfügbar" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Überprüfen\" bald verfügbar" #~ msgid "(for enhanced audio processing)" #~ msgstr "(für verbesserte Audioverarbeitung)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# Tag} other {# Tags}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Tag:} other {Tags:}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -140,7 +210,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} hinzugefügt" @@ -155,11 +225,11 @@ msgstr "{0} Gespräche • Bearbeitet {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} nicht hinzugefügt" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} ausgewählt" @@ -170,14 +240,14 @@ msgstr "{conversationCount} ausgewählt" #~ msgstr "{diffInHours} Stunden zuvor" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Derzeit ist # Unterhaltung bereit zur Analyse.} other {Derzeit sind # Unterhaltungen bereit zur Analyse.}}" #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} Minuten und {seconds} Sekunden" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} liest gerade" @@ -185,7 +255,7 @@ msgstr "{readingNow} liest gerade" #~ msgstr "{seconds} Sekunden" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{0} werden noch verarbeitet." @@ -207,21 +277,21 @@ msgstr "+{hiddenCount} Unterhaltungen" msgid "0 Aspects" msgstr "0 Aspekte" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" -msgstr "" +msgstr "1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" -msgstr "" +msgstr "2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -msgstr "" +msgstr "3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" -msgstr "" +msgstr "Ein freundlicher Name, um diesen Webhook zu identifizieren" #: src/components/settings/TwoFactorSettingsCard.tsx:176 msgid "Account password" @@ -235,17 +305,17 @@ msgstr "Aktion von" msgid "Action On" msgstr "Aktion am" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Aktionen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Aktive Filter" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Hinzufügen" @@ -253,16 +323,16 @@ msgstr "Hinzufügen" msgid "Add additional context (Optional)" msgstr "Zusätzlichen Kontext hinzufügen (Optional)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Alle zutreffenden hinzufügen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Unterhaltungen zum Kontext hinzufügen" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern." @@ -270,7 +340,7 @@ msgstr "Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität un msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Tag hinzufügen" @@ -279,7 +349,7 @@ msgstr "Tag hinzufügen" msgid "add.tag.filter.modal.title" msgstr "Tag zu Filtern hinzufügen" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Tags hinzufügen" @@ -288,62 +358,66 @@ msgstr "Tags hinzufügen" msgid "add.tag.filter.modal.add" msgstr "Zu Filtern hinzufügen" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Zu diesem Chat hinzufügen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" -msgstr "" +msgstr "Webhook hinzufügen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" -msgstr "" +msgstr "Ihren ersten Webhook hinzufügen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Hinzugefügt" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "Hinzugefügte E-Mails" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "<0>{totalCount, plural, one {# Unterhaltung} other {# Unterhaltungen}} zum Chat hinzufügen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "<0>{totalCount, plural, one {# Unterhaltung} other {# Unterhaltungen}} mit den folgenden Filtern hinzufügen:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "<0>{totalCount, plural, one {# weitere Unterhaltung} other {# weitere Unterhaltungen}} hinzufügen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "<0>{totalCount, plural, one {# weitere Unterhaltung} other {# weitere Unterhaltungen}} mit den folgenden Filtern hinzufügen:" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Kontext wird hinzugefügt:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Unterhaltungen werden hinzugefügt" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Die Basis-Schriftgröße für die Oberfläche anpassen" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" -msgstr "" +msgstr "Erweitert" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Erweitert (Tipps und best practices)" @@ -351,7 +425,7 @@ msgstr "Erweitert (Tipps und best practices)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Erweitert (Tipps und Tricks)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" @@ -370,14 +444,14 @@ msgstr "Alle Unterhaltungen" #~ msgid "All conversations ready" #~ msgstr "Alle Gespräche bereit" -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "Alle Dateien wurden erfolgreich hochgeladen." #~ msgid "All Insights" #~ msgstr "Alle Erkenntnisse" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Teilnehmern erlauben, über den Link neue Gespräche zu beginnen" @@ -385,28 +459,28 @@ msgstr "Teilnehmern erlauben, über den Link neue Gespräche zu beginnen" msgid "Almost there" msgstr "Fast geschafft" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Bereits zu diesem Chat hinzugefügt" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Bereits im Kontext" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "Eine E-Mail-Benachrichtigung wird an {0} Teilnehmer{1} gesendet. Möchten Sie fortfahren?" #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "Eine E-Mail-Benachrichtigung wird an {0} Teilnehmer{1} gesendet. Möchten Sie fortfahren?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "Ein Fehler ist aufgetreten." @@ -444,49 +518,53 @@ msgstr "" "Hinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren." #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" -msgstr "" +msgstr "Ankündigungen" #: src/components/announcement/AnnouncementDrawerHeader.tsx:23 #~ msgid "Announcements" #~ msgstr "Ankündigungen" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Transkripte anonymisieren" + #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "Freigeben" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Genehmigt" #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -msgstr "" +msgstr "Sind Sie sicher, dass Sie den Webhook \"{0}\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden." #~ msgid "Are you sure you want to delete this project?" #~ msgstr "Sind Sie sicher, dass Sie dieses Projekt löschen möchten?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden." #~ msgid "Are you sure you want to delete this recording?" #~ msgstr "Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "Sind Sie sicher, dass Sie das Gespräch beenden möchten?" @@ -497,45 +575,49 @@ msgstr "Sind Sie sicher, dass Sie das Gespräch beenden möchten?" msgid "Are you sure you want to generate the library? This will take a while and overwrite your current views and insights." msgstr "Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren." #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "Artefakt erfolgreich freigegeben!" +#~ msgid "Artefact approved successfully!" +#~ msgstr "Artefakt erfolgreich freigegeben!" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "Artefakt erfolgreich neu geladen!" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "Artefakt erfolgreich neu geladen!" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "Artefakt erfolgreich überarbeitet!" +#~ msgid "Artefact revised successfully!" +#~ msgstr "Artefakt erfolgreich überarbeitet!" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "Artefakt erfolgreich aktualisiert!" +#~ msgid "Artefact updated successfully!" +#~ msgstr "Artefakt erfolgreich aktualisiert!" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "Artefakte" +#~ msgid "artefacts" +#~ msgstr "Artefakte" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefakte" +#~ msgid "Artefacts" +#~ msgstr "Artefakte" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Fragen" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "E-Mail anfragen?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "Nach Namen fragen?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen" #: src/routes/project/library/ProjectLibraryAspect.tsx:51 msgid "Aspect" @@ -554,11 +636,15 @@ msgstr "Aspekte" #~ msgstr "At least one topic must be selected to enable Dembrane Verify" #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "Wähle mindestens ein Thema, um Konkret machen zu aktivieren" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "Wähle mindestens ein Thema, um Konkret machen zu aktivieren" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen." @@ -586,83 +672,103 @@ msgstr "Audit-Protokolle als CSV exportiert" msgid "Audit logs exported to JSON" msgstr "Audit-Protokolle als JSON exportiert" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Authentifizierungscode" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Titel automatisch generieren" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Titel automatisch generieren" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Automatisch generiert oder manuell eingeben" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Automatisch auswählen" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Automatisch auswählen deaktiviert" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Automatisch auswählen aktiviert" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Quellen automatisch auswählen, um dem Chat hinzuzufügen" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" -msgstr "" +msgstr "Transkripte automatisch in Ihre CRM oder Datenbank speichern" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." -msgstr "" +msgstr "Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten." #: src/components/conversation/AutoSelectConversations.tsx:96 msgid "Available" msgstr "Verfügbar" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Zurück" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Zurück" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Zurück" -#~ msgid "Back" -#~ msgstr "Zurück" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Zurück zur Auswahl" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Grundlegend (Wesentliche Tutorial-Folien)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Grundlegende Einstellungen" #~ msgid "Begin!" #~ msgstr "Beginnen!" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Beta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -672,52 +778,52 @@ msgstr "Beta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Big Picture – Themen & Muster" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" -msgstr "" +msgstr "Einen Anruf buchen" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Ideen brainstormen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" -msgstr "" +msgstr "Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Abbrechen" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Abbrechen" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "Abbrechen" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "Abbrechen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Abbrechen" @@ -726,7 +832,7 @@ msgstr "Abbrechen" msgid "add.tag.filter.modal.cancel" msgstr "Abbrechen" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "Leeres Gespräch kann nicht hinzugefügt werden" @@ -737,16 +843,16 @@ msgstr "Leeres Gespräch kann nicht hinzugefügt werden" msgid "Changes will be saved automatically" msgstr "Änderungen werden automatisch gespeichert" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Chat" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Chat | Dembrane" @@ -756,7 +862,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Chat" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Chat" @@ -771,17 +877,25 @@ msgstr "Mikrofonzugriff prüfen" #~ msgid "Check microphone access" #~ msgstr "Mikrofonzugriff prüfen" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Überprüfen Sie Ihre E-Mail" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Überprüfe..." +#~ msgid "Checking..." +#~ msgstr "Überprüfe..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Ein Logo-Datei auswählen" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Aus Ihren anderen Projekten auswählen" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" -msgstr "" +msgstr "Wählen Sie, wann Sie Benachrichtigungen erhalten möchten" #: src/components/settings/FontSettingsCard.tsx:74 msgid "Choose your preferred theme for the interface" @@ -790,34 +904,42 @@ msgstr "Wähl dein Theme für das Interface" #~ msgid "Citing the following sources" #~ msgstr "Quellen zitieren" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Klicken Sie auf \"Dateien hochladen\", wenn Sie bereit sind, den Upload-Prozess zu starten." #: src/routes/project/HostGuidePage.tsx:1385 msgid "Click to edit" -msgstr "" +msgstr "Klicken, um zu bearbeiten" #: src/components/conversation/ConversationLinks.tsx:155 msgid "Click to see all {totalCount} conversations" msgstr "Klicken, um alle {totalCount} Unterhaltungen anzuzeigen" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Von einem anderen Projekt klonen" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Von Projekt klonen" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Projekt klonen" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Projekt klonen" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Schließen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Schließen" @@ -825,9 +947,9 @@ msgstr "Schließen" msgid "Collection" msgstr "Sammlung" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" -msgstr "" +msgstr "Häufige Anwendungsfälle:" #: src/components/chat/templates.ts:42 msgid "Compare & Contrast" @@ -836,16 +958,16 @@ msgstr "Vergleichen & Gegenüberstellen" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber." -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Abgeschlossen" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Konkrete Themen" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Weiter" @@ -854,12 +976,12 @@ msgstr "Weiter" msgid "Confirm New Password" msgstr "Neues Passwort bestätigen" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Passwort bestätigen" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Veröffentlichung bestätigen" @@ -867,7 +989,7 @@ msgstr "Veröffentlichung bestätigen" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Verbindung zu den Berichtsdiensten wird hergestellt..." @@ -885,7 +1007,7 @@ msgstr "Verbindung ungesund" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Kontext" @@ -898,8 +1020,8 @@ msgstr "Kontext hinzugefügt:" #~ msgstr "Kontextlimit erreicht" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Weiter" @@ -909,7 +1031,7 @@ msgstr "Weiter" #~ msgid "conversation" #~ msgstr "Gespräch" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Gespräch zum Chat hinzugefügt" @@ -927,7 +1049,7 @@ msgstr "Gespräch beendet" #~ msgid "Conversation processing" #~ msgstr "Gespräch wird verarbeitet" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Gespräch aus dem Chat entfernt" @@ -936,13 +1058,13 @@ msgstr "Gespräch aus dem Chat entfernt" msgid "Conversation Status" msgstr "Gesprächstatus" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Gesprächstatusdetails" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" -msgstr "" +msgstr "Gesprächstags" #~ msgid "conversation.accordion.skeleton.title" #~ msgstr "Gespräche" @@ -950,11 +1072,11 @@ msgstr "" #~ msgid "conversation.linking_conversations.deleted" #~ msgstr "Die Quelle wurde gelöscht" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "Gespräche" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Gespräche" @@ -968,32 +1090,38 @@ msgstr "Gespräche" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Abkühlung läuft. Verfügbar in {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Kopiert" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Von dem ursprünglichen Gespräch kopiert" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" -msgstr "" +msgstr "Kopiert!" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Kopieren" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Link kopieren" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Link zum Teilen dieses Berichts kopieren" @@ -1002,17 +1130,17 @@ msgstr "Link zum Teilen dieses Berichts kopieren" msgid "Copy secret" msgstr "Geheimnis kopieren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Zusammenfassung kopieren" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "In die Zwischenablage kopieren" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" -msgstr "" +msgstr "In die Zwischenablage kopieren" #~ msgid "Copy transcript" #~ msgstr "Transkript kopieren" @@ -1021,11 +1149,15 @@ msgstr "" msgid "Copying..." msgstr "Kopieren..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Erstellen" -#: src/routes/auth/Register.tsx:57 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Einen neuen Webhook von Grund auf erstellen" + +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Konto erstellen" @@ -1038,7 +1170,7 @@ msgstr "Bibliothek erstellen" #~ msgstr "Bibliothek erstellen" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Neue Ansicht erstellen" @@ -1046,12 +1178,12 @@ msgstr "Neue Ansicht erstellen" #~ msgstr "Neue Ansicht erstellen" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Bericht erstellen" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Ansicht erstellen" @@ -1059,25 +1191,41 @@ msgstr "Ansicht erstellen" msgid "Create View" msgstr "Ansicht erstellen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" -msgstr "" +msgstr "Webhook erstellen" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Erstellt am" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Aktuelles Logo" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Benutzerdefiniert" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Benutzerdefinierter Dateiname" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Benutzerdefiniertes Logo" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Benutzerdefinierter Titel-Prompt" + #~ msgid "Danger Zone" #~ msgstr "Gefahrenbereich" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "Dashboard-URL (direkter Link zur Gesprächsübersicht)" + #~ msgid "dashboard.dembrane.verify.description" #~ msgstr "Enable this feature to allow participants to create and approve \"verified objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview." @@ -1090,37 +1238,37 @@ msgstr "Benutzerdefinierter Dateiname" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Standard" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Standard - Kein Tutorial (Nur Datenschutzbestimmungen)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Löschen" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Chat löschen" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Gespräch löschen" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Projekt löschen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" -msgstr "" +msgstr "Webhook löschen" #: src/components/participant/UserChunkMessage.tsx:68 msgid "Deleted successfully" @@ -1132,8 +1280,8 @@ msgstr "Erfolgreich gelöscht" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane läuft mit KI. Prüf die Antworten noch mal gegen." @@ -1178,11 +1326,11 @@ msgstr "Zwei-Faktor-Authentifizierung deaktivieren" msgid "Disabled" msgstr "Deaktiviert" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" -msgstr "" +msgstr "Benötige ich dies?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "Möchten Sie zu diesem Projekt beitragen?" @@ -1190,19 +1338,19 @@ msgstr "Möchten Sie zu diesem Projekt beitragen?" msgid "Do you want to stay in the loop?" msgstr "Möchten Sie auf dem Laufenden bleiben?" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Dokumentation" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Herunterladen" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Alle Transkripte herunterladen" @@ -1210,33 +1358,50 @@ msgstr "Alle Transkripte herunterladen" msgid "Download as" msgstr "Herunterladen als" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Audio herunterladen" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "QR-Code herunterladen" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Transkript herunterladen" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Transkript-Download-Optionen" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen" #: src/routes/project/HostGuidePage.tsx:1397 msgid "Drag to reorder" -msgstr "" +msgstr "Ziehen, um umzusortieren" + +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Dauer" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Niederländisch" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "z.B. \"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" -msgstr "" +msgstr "z.B. Slack-Benachrichtigungen, Make-Workflow" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" #~ msgid "ECHO" #~ msgstr "ECHO" @@ -1250,19 +1415,19 @@ msgstr "" #~ msgid "ECHO!" #~ msgstr "ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" -msgstr "" +msgstr "Bearbeiten" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Gespräch bearbeiten" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Dateiname bearbeiten" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Projekt bearbeiten" @@ -1278,16 +1443,16 @@ msgstr "Bericht bearbeiten" msgid "report.editor.description" msgstr "Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" -msgstr "" +msgstr "Webhook bearbeiten" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Bearbeitungsmodus" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "E-Mail" @@ -1307,7 +1472,7 @@ msgstr "E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite msgid "email@work.com" msgstr "email@work.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Leer" @@ -1327,30 +1492,34 @@ msgstr "2FA aktivieren" #~ msgid "Enable Dembrane Verify" #~ msgstr "Enable Dembrane Verify" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Explore aktivieren" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Tiefer eintauchen aktivieren" +#~ msgid "Enable Go deeper" +#~ msgstr "Tiefer eintauchen aktivieren" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Konkret machen aktivieren" +#~ msgid "Enable Make it concrete" +#~ msgstr "Konkret machen aktivieren" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" -msgstr "" +msgstr "Teilnahme aktivieren" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Benachrichtigungen für Berichte aktivieren" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Echo\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." @@ -1358,19 +1527,31 @@ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachric #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"ECHO\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Explore\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." + #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Dembrane Antwort\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Transkript anonymisieren aktivieren" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Zwei-Faktor-Authentifizierung aktivieren" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Verify aktivieren" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Aktiviert" @@ -1378,39 +1559,39 @@ msgstr "Aktiviert" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "Ende der Liste • Alle {0} Gespräche geladen" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "Englisch" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Geben Sie einen Schlüsselbegriff oder Eigennamen ein" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Geben Sie einen Namen für das neue Gespräch ein" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Geben Sie einen Namen für Ihr geklontes Projekt ein" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" -msgstr "" +msgstr "Geheimen Schlüssel eingeben" #: src/components/settings/TwoFactorSettingsCard.tsx:374 msgid "Enter a valid code to turn off two-factor authentication." msgstr "Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Dateiname eingeben (ohne Erweiterung)" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Geben Sie einen neuen Namen für den Chat ein:" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein." @@ -1426,16 +1607,20 @@ msgstr "Geben Sie Ihr Passwort ein" msgid "Enter your query" msgstr "Geben Sie Ihre Anfrage ein" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Von dem Teilnehmer auf dem Portal eingetragen" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Fehler" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Fehler beim Klonen des Projekts" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Fehler beim Erstellen des Berichts" @@ -1446,91 +1631,104 @@ msgstr "Fehler beim Laden der Ankündigungen" #~ msgid "Error loading insights" #~ msgstr "Fehler beim Laden der Erkenntnisse" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Fehler beim Laden des Projekts" #~ msgid "Error loading quotes" #~ msgstr "Fehler beim Laden der Zitate" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Fehler aufgetreten" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Fehler beim Aktualisieren des Berichts" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Fehler beim Hochladen von \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" -msgstr "" +msgstr "Ereignisse" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" -msgstr "" +msgstr "Ereignisse, die beobachtet werden sollen" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Alles sieht gut aus – Sie können fortfahren." #~ msgid "Everything looks good – you can continue." #~ msgstr "Alles sieht gut aus – Sie können fortfahren." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" -msgstr "" +msgstr "Beispiel-Webhook-Payload" #~ msgid "Experimental" #~ msgstr "Experimentell" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Explore" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Erkunden" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Entdecke Themen und Muster über alle Gespräche hinweg" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "{conversationCount} Gespräche werden analysiert" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Exportieren" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Fehlgeschlagen" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Fehler beim Hinzufügen des Gesprächs zum Chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Fehler beim Hinzufügen des Gesprächs zum Chat{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Fehler beim Hinzufügen von Unterhaltungen zum Kontext" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "Transkript konnte nicht kopiert werden. Versuch es noch mal." @@ -1538,13 +1736,13 @@ msgstr "Transkript konnte nicht kopiert werden. Versuch es noch mal." msgid "Failed to delete response" msgstr "Fehler beim Löschen der Antwort" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat" @@ -1556,11 +1754,11 @@ msgstr "Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat" msgid "Failed to finish conversation. Please try again." msgstr "Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Fehler beim Generieren von {label}. Bitte versuchen Sie es erneut." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal." @@ -1577,9 +1775,9 @@ msgstr "Fehler beim Laden der Ankündigungen" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Fehler beim Laden des Audio oder das Audio ist nicht verfügbar" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" -msgstr "" +msgstr "Webhooks konnten nicht geladen werden" #: src/components/announcement/hooks/index.ts:338 #: src/components/announcement/hooks/index.ts:351 @@ -1595,30 +1793,38 @@ msgstr "Fehler beim Markieren der Ankündigung als gelesen" msgid "Failed to reconnect. Please try reloading the page." msgstr "Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Fehler beim Entfernen des Gesprächs aus dem Chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Fehler beim Entfernen des Gesprächs aus dem Chat{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Logo konnte nicht entfernt werden" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1628,43 +1834,51 @@ msgstr "Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneu msgid "Failed to stop recording on device change. Please try again." msgstr "Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Logo konnte nicht hochgeladen werden" + #~ msgid "Failed to verify email status. Please try again." #~ msgstr "E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" +msgid "participant.modal.echo.info.title" msgstr "Funktion bald verfügbar" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "Datei \"{0}\" überschreitet die maximale Größe von {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "Datei \"{0}\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "Datei \"{0}\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "Datei \"{0}\" ist zu klein ({1}). Mindestgröße ist {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "Dateigröße: Min {0}, Max {1}, bis zu {MAX_FILES} Dateien" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Dateiname aus hochgeladener Datei" + #~ msgid "Filter" #~ msgstr "Filter" @@ -1690,12 +1904,12 @@ msgid "participant.button.stop.finish" msgstr "Beenden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Beenden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Beenden" @@ -1703,7 +1917,7 @@ msgstr "Beenden" #~ msgstr "Beenden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "Gespräch beenden" @@ -1711,8 +1925,8 @@ msgstr "Gespräch beenden" msgid "Finished" msgstr "Beendet" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "Vorname" @@ -1722,23 +1936,35 @@ msgstr "Vorname" #~ msgid "Follow playback" #~ msgstr "Folgen der Wiedergabe" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Schriftgröße" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -msgstr "" +msgstr "Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "Französisch" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" -msgstr "" +msgstr "Vollständiges Transkript (wenn verfügbar)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Generieren" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Erstellen Sie zuerst eine Zusammenfassung" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Erkenntnisse aus Ihren Gesprächen generieren" @@ -1749,15 +1975,15 @@ msgstr "Geheimnis generieren" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Zusammenfassung generieren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Zusammenfassung wird erstellt. Kurz warten ..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "Deutsch" @@ -1766,7 +1992,7 @@ msgid "Get an immediate reply from Dembrane to help you deepen the conversation. msgstr "Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" msgstr "Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen." @@ -1774,45 +2000,44 @@ msgstr "Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertief msgid "Give me a list of 5-10 topics that are being discussed." msgstr "Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden." -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Go back" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Zurück" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Tiefer eintauchen" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Tiefer eintauchen" +#~ msgid "Go deeper" +#~ msgstr "Tiefer eintauchen" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Zur Startseite" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Zur neuen Unterhaltung gehen" #~ msgid "Grid view" #~ msgstr "Rasteransicht" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "Hat verifizierte Artefakte" -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Helfen Sie uns zu übersetzen" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Hallo, {0}" @@ -1820,10 +2045,14 @@ msgstr "Hallo, {0}" msgid "Hidden" msgstr "Verborgen" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Verborgener Schatz" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Verstecken" + #~ msgid "Hide {0}" #~ msgstr "Verstecken {0}" @@ -1844,15 +2073,15 @@ msgstr "Daten verbergen" msgid "Hide revision data" msgstr "Revisionsdaten verbergen" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Startseite" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" -msgstr "" +msgstr "Wie es funktioniert:" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -1863,7 +2092,7 @@ msgstr "" "* Wie sieht Erfolg aus" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "Ich verstehe" @@ -1888,21 +2117,21 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "Gib dieses Artefakt frei, wenn es für dich passt." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#~ msgstr "" +#~ msgstr "Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -msgstr "" +msgstr "Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -msgstr "" +msgstr "Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking." #~ msgid "In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view." #~ msgstr "Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert." @@ -1910,7 +2139,7 @@ msgstr "" #~ msgid "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" #~ msgstr "Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden." -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Link zur Portal-Seite in Bericht einschließen" @@ -1937,7 +2166,7 @@ msgstr "Erkenntnisse" msgid "Invalid code. Please request a new one." msgstr "Ungültiger Code. Bitte fordern Sie einen neuen an." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Ungültige Anmeldedaten." @@ -1964,21 +2193,20 @@ msgstr "Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bit #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "Fehler beim Laden des Artefakts. Versuch es gleich nochmal." +msgid "participant.outcome.error.description" +msgstr "Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italienisch" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Treten Sie {0} auf Dembrane bei" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Treten Sie {0} auf Dembrane bei" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -1991,12 +2219,12 @@ msgstr "Einen Moment bitte" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Sprache" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Nachname" @@ -2011,13 +2239,13 @@ msgstr "Zuletzt gespeichert am {0}" msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" -msgstr "" +msgstr "Mehr über Webhooks erfahren" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" -msgstr "" +msgstr "Leer lassen, um das bestehende zu behalten" #: src/components/chat/TemplatesModal.tsx:127 msgid "Let us know!" @@ -2028,7 +2256,7 @@ msgstr "Lassen Sie uns wissen!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Bibliothek" @@ -2067,19 +2295,19 @@ msgstr "Link" #~ msgstr "Live" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Live Audiopegel:" #~ msgid "Live audio level:" #~ msgstr "Live Audiopegel:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Live Vorschau" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Anweisungen werden geladen…" @@ -2096,7 +2324,7 @@ msgstr "Aktionen werden geladen..." msgid "participant.concrete.loading.artefact" msgstr "Artefakt wird geladen…" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Audit-Protokolle werden geladen…" @@ -2104,70 +2332,68 @@ msgstr "Audit-Protokolle werden geladen…" msgid "Loading collections..." msgstr "Sammlungen werden geladen..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Konkrete Themen werden geladen…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Mikrofone werden geladen..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Transkript wird geladen ..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "wird geladen..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Laden..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Laden…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Anmelden" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Anmelden | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Als bestehender Benutzer anmelden" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo entfernt" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo erfolgreich aktualisiert" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Abmelden" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Längste zuerst" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Konkrete Themen" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Konkret machen" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Alle als gelesen markieren" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Als gelesen markieren" @@ -2188,47 +2414,47 @@ msgstr "Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihr #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Modus" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "Mehr Vorlagen" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Verschieben" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Gespräch verschieben" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Gespräch zu einem anderen Projekt verschieben" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Gespräch zu einem anderen Projekt verschieben" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Name" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Name A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" -msgstr "" +msgstr "Name ist erforderlich" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Name Z-A" @@ -2236,7 +2462,7 @@ msgstr "Name Z-A" msgid "New" msgstr "Neu" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" msgstr "Neuer Gespräch Name" @@ -2253,32 +2479,32 @@ msgstr "Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. msgid "New Password" msgstr "Neues Passwort" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "Neues Projekt" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Neueste zuerst" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "Bereit zum Beginn" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Weiter" @@ -2286,7 +2512,7 @@ msgstr "Weiter" #~ msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "Nein" @@ -2294,16 +2520,16 @@ msgstr "Nein" msgid "No actions found" msgstr "Keine Aktionen gefunden" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "Keine Ankündigungen verfügbar" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "Keine Audit-Protokolle entsprechen den aktuellen Filtern." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "Keine Chats gefunden. Starten Sie einen Chat mit dem \"Fragen\"-Button." @@ -2314,11 +2540,11 @@ msgstr "Keine Chats gefunden. Starten Sie einen Chat mit dem \"Fragen\"-Button." msgid "No collections found" msgstr "Keine Sammlungen gefunden" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "Keine konkreten Themen verfügbar." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "Kein Inhalt" @@ -2338,16 +2564,16 @@ msgstr "Keine Gespräche verfügbar, um eine Bibliothek zu erstellen" msgid "No conversations found." msgstr "Keine Gespräche gefunden." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "Noch keine Gespräche" @@ -2357,16 +2583,16 @@ msgstr "Noch keine Gespräche" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "Keine Projekte gefunden {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "Keine Projekte für den Suchbegriff gefunden" @@ -2376,34 +2602,33 @@ msgstr "Keine Projekte für den Suchbegriff gefunden" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "Kein Bericht gefunden" #~ msgid "No resources found." #~ msgstr "Keine Ressourcen gefunden." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "Keine Ergebnisse" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "Keine Tags gefunden" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "Kein Transkript verfügbar" #~ msgid "No transcript available for this conversation." #~ msgstr "Kein Transkript für dieses Gespräch verfügbar." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen." @@ -2414,23 +2639,27 @@ msgstr "Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erne #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "Kein Tutorial (nur Datenschutzerklärungen)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "Für dieses Projekt sind keine Verifizierungsthemen konfiguriert." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" -msgstr "" +msgstr "Keine Webhooks konfiguriert" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "Keine Webhooks gefunden" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "Nicht hinzugefügt" @@ -2438,32 +2667,36 @@ msgstr "Nicht hinzugefügt" msgid "Not available" msgstr "Nicht verfügbar" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird." + #~ msgid "Now" #~ msgstr "Jetzt" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Älteste zuerst" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Überarbeite den Text, bis er zu dir passt." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Lies den Text laut vor." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "Laufend" #~ msgid "Ongoing" #~ msgstr "Laufend" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Laufende Gespräche" @@ -2486,13 +2719,17 @@ msgstr "Öffnen" #~ msgid "Open Documentation" #~ msgstr "Dokumentation öffnen" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "Offen für Teilnahme?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Leitfaden öffnen" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" -msgstr "" +msgstr "Leitfaden für Host öffnen" #. js-lingui-explicit-id #: src/components/participant/PermissionErrorModal.tsx:59 @@ -2502,30 +2739,62 @@ msgstr "Fehlerbehebungsleitfaden öffnen" #~ msgid "Open troubleshooting guide" #~ msgstr "Fehlerbehebungsleitfaden öffnen" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" -msgstr "" +msgstr "Optional" + +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Optionales Feld auf der Startseite" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Optionales Feld auf der Danksagungsseite" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Optionen" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Ergebnis erfolgreich freigeschaltet!" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Ergebnis erfolgreich neu geladen!" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Ergebnis erfolgreich überarbeitet!" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Ergebnis erfolgreich aktualisiert!" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "Ergebnisse" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Ergebnisse" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Übersicht" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Overview – Themes & Patterns" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Seiteninhalt" @@ -2533,22 +2802,30 @@ msgstr "Seiteninhalt" msgid "Page not found" msgstr "Seite nicht gefunden" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Seitentitel" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Teilnehmer" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Teilnehmer-E-Mail" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Teilnehmer-E-Mails" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Teilnehmer-Funktionen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" -msgstr "" +msgstr "Teilnehmer-Name und -E-Mail" #~ msgid "participant.button.echo" #~ msgstr "Echo" @@ -2658,22 +2935,22 @@ msgstr "" #~ msgid "participant.verify.selection.title" #~ msgstr "What do you want to verify?" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Teilnehmer können beim Erstellen von Gesprächen Tags auswählen" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Passwort" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Portal mit Passwort schützen (Feature-Anfrage)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Passwörter stimmen nicht überein" @@ -2681,7 +2958,7 @@ msgstr "Passwörter stimmen nicht überein" #~ msgid "Pause" #~ msgstr "Pause" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Vorlesen pausieren" @@ -2689,19 +2966,19 @@ msgstr "Vorlesen pausieren" msgid "Pending" msgstr "Ausstehend" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Wähl den Ansatz, der zu deiner Frage passt" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen." @@ -2712,23 +2989,22 @@ msgstr "Bitte überprüfen Sie Ihre Eingaben auf Fehler." #~ msgid "Please do not close your browser" #~ msgstr "Bitte schließen Sie Ihren Browser nicht" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein." -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Bitte melden Sie sich an, um fortzufahren." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -2741,18 +3017,18 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \"Aufnahme starten\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Bitte wählen Sie eine Sprache für Ihren Bericht" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht" #~ msgid "Please select at least one source" #~ msgstr "Bitte wählen Sie mindestens eine Quelle" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Wähl Gespräche in der Seitenleiste aus, um weiterzumachen" @@ -2768,21 +3044,21 @@ msgstr "Wähl Gespräche in der Seitenleiste aus, um weiterzumachen" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Bitte warten Sie {timeStr}, bevor Sie eine weitere Antwort anfordern." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Bibliothek wird verarbeitet" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet." @@ -2790,20 +3066,20 @@ msgstr "Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden a msgid "Please wait while we verify your email address." msgstr "Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Portal Inhalt" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Portal Editor" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Powered by" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Deine Gespräche werden vorbereitet … kann einen Moment dauern." @@ -2811,11 +3087,15 @@ msgstr "Deine Gespräche werden vorbereitet … kann einen Moment dauern." msgid "Preparing your experience" msgstr "Ihre Erfahrung wird vorbereitet" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Vorschau: Der schnelle braune Fuchs springt über den faulen Hund." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" -msgstr "" +msgstr "PDF drucken / speichern" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Diesen Bericht drucken" @@ -2823,12 +3103,12 @@ msgstr "Diesen Bericht drucken" msgid "Privacy Statements" msgstr "Datenschutzerklärungen" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Fortfahren" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Fortfahren" @@ -2839,7 +3119,7 @@ msgstr "Fortfahren" #~ msgstr "Verarbeitet" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "<0>{totalCount, plural, one {# Unterhaltung} other {# Unterhaltungen}} werden verarbeitet und zu Ihrem Chat hinzugefügt" @@ -2852,12 +3132,12 @@ msgstr "<0>{totalCount, plural, one {# Unterhaltung} other {# Unterhaltungen}}." +msgstr "Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Projektbibliothek | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Projektname" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" -msgstr "" +msgstr "Projektname und -ID" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "Der Projektname muss mindestens 4 Zeichen lang sein" @@ -2885,26 +3169,26 @@ msgstr "Der Projektname muss mindestens 4 Zeichen lang sein" msgid "Project not found" msgstr "Projekt nicht gefunden" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Projektübersicht | Dembrane" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Projekt Einstellungen" #~ msgid "project.sidebar.chat.end.description" #~ msgstr "Ende der Liste • Alle {0} Gespräche geladen" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Projekte" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Projekte | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Projekte Startseite" @@ -2912,65 +3196,69 @@ msgstr "Projekte Startseite" msgid "Provide an overview of the main topics and recurring themes" msgstr "Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Veröffentlichen" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Veröffentlicht" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Hol dir die wichtigsten Zitate aus dieser Session" #~ msgid "Quotes" #~ msgstr "Zitate" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Einstellungen aus einem bestehenden Webhook wiederverwenden" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Vorlesen" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "Bereit zum Beginn" #~ msgid "Ready to Begin?" #~ msgstr "Bereit zum Beginn?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." -msgstr "" +msgstr "Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten." #: src/components/settings/TwoFactorSettingsCard.tsx:338 msgid "Recommended apps" msgstr "Empfohlene Apps" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Erneut verbinden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Aufnehmen" #~ msgid "Record" #~ msgstr "Aufnehmen" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Ein weiteres Gespräch aufnehmen" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Aufnahme unterbrochen" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Aufnahme pausiert" @@ -2993,12 +3281,7 @@ msgstr "Wiederkehrende Themen" msgid "References" msgstr "Referenzen" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Verfeinern" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Aktualisieren" @@ -3009,24 +3292,24 @@ msgstr "Audit-Protokolle aktualisieren" #~ msgid "Regenerate Library" #~ msgstr "Bibliothek neu generieren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Zusammenfassung neu generieren" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Artefakt wird neu erstellt…" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Ergebnis wird neu generiert" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Zusammenfassung wird neu erstellt. Kurz warten ..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "Registrieren | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "Als neuer Benutzer registrieren" @@ -3034,7 +3317,7 @@ msgstr "Als neuer Benutzer registrieren" #~ msgstr "Relevanz" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Seite neu laden" @@ -3044,44 +3327,48 @@ msgid "participant.button.reload" msgstr "Seite neu laden" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Neu laden" #~ msgid "Reload Page" #~ msgstr "Seite neu laden" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Entfernen" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "E-Mail entfernen" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Datei entfernen" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Aus diesem Chat entfernen" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Umbenennen" #~ msgid "Rename" #~ msgstr "Umbenennen" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Antwort Prompt" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Bericht" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Ein Problem melden" @@ -3090,11 +3377,11 @@ msgstr "Ein Problem melden" msgid "Report Created - {0}" msgstr "Bericht erstellt - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Berichtsbenachrichtigungen" @@ -3112,25 +3399,29 @@ msgstr "Zugriff anfordern" msgid "Request Access" msgstr "Zugriff anfordern" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Passwort zurücksetzen anfordern" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Passwort zurücksetzen anfordern | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Mikrofonzugriff wird angefragt..." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Benötigt \"E-Mail anfordern?\" um aktiviert zu sein" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" -msgstr "" +msgstr "Zurücksetzen" #~ msgid "Reset All Options" #~ msgstr "Alle Optionen zurücksetzen" @@ -3144,8 +3435,8 @@ msgstr "Passwort zurücksetzen" msgid "Reset Password | Dembrane" msgstr "Passwort zurücksetzen | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Auf Standard zurücksetzen" @@ -3160,27 +3451,27 @@ msgstr "Fortsetzen" #~ msgid "Resume" #~ msgstr "Fortsetzen" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Hertranskribieren" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Gespräch hertranskribieren" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Gespräch hertranskribieren" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Erneut versuchen" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Upload erneut versuchen" @@ -3188,7 +3479,7 @@ msgstr "Upload erneut versuchen" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Dateien vor dem Hochladen überprüfen" @@ -3197,33 +3488,33 @@ msgid "Review processing status for every conversation collected in this project msgstr "Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "Überarbeiten" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" #: src/routes/project/HostGuidePage.tsx:1391 msgid "Right-click to highlight" -msgstr "" +msgstr "Rechtsklick, um hervorzuheben" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Zeilen pro Seite" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "Speichern" #~ msgid "Save" #~ msgstr "Speichern" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" -msgstr "" +msgstr "Änderungen speichern" #: src/components/form/SaveStatus.tsx:31 msgid "Save Error!" @@ -3243,11 +3534,11 @@ msgid "Scroll to bottom" msgstr "Nach unten scrollen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Suchen" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Suchen" @@ -3255,20 +3546,20 @@ msgstr "Suchen" msgid "Search conversations" msgstr "Gespräche suchen" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Projekte suchen" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Projekte suchen" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Projekte suchen..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Tags suchen" @@ -3277,10 +3568,14 @@ msgid "Search templates..." msgstr "Vorlagen suchen..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Suchtext:" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Webhooks suchen..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Durchsucht die relevantesten Quellen" @@ -3289,9 +3584,9 @@ msgstr "Durchsucht die relevantesten Quellen" msgid "Searching through the most relevant sources" msgstr "Durchsucht die relevantesten Quellen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" -msgstr "" +msgstr "Geheimnis" #: src/components/settings/TwoFactorSettingsCard.tsx:436 msgid "Secret copied" @@ -3300,73 +3595,77 @@ msgstr "Geheimnis kopiert" #~ msgid "See conversation status details" #~ msgstr "Gesprächstatusdetails ansehen" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "Bis bald" #~ msgid "Segments" #~ msgstr "Segmente" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Mikrofon auswählen" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Einen Webhook auswählen um zu klonen" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Alle auswählen" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Alle auswählen ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Alle Ergebnisse auswählen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" -msgstr "" +msgstr "Mindestens ein Ereignis auswählen" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Audio-Dateien auswählen" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Wähle Gespräche aus und finde genaue Zitate" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Gespräche in der Seitenleiste auswählen" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Projekt auswählen" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Tags auswählen" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Tutorial auswählen" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Wähl ein konkretes Thema aus." +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Mikrofon auswählen" @@ -3374,65 +3673,65 @@ msgstr "Mikrofon auswählen" #~ msgstr "Wählen Sie Ihr Mikrofon:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Ausgewählte Dateien ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Ausgewähltes Mikrofon" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Auswahl zu groß" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Senden" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" -msgstr "" +msgstr "Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind" #~ msgid "Sentiment" #~ msgstr "Stimmung" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Sitzungsname" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Ihr erstes Projekt einrichten" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Einstellungen" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Einstellungen" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Settings | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Teilen" +#~ msgid "Share" +#~ msgstr "Teilen" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Diesen Bericht teilen" @@ -3440,25 +3739,29 @@ msgstr "Diesen Bericht teilen" msgid "Share your details here" msgstr "Teilen Sie hier Ihre Daten" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Ihre Stimme teilen" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Kürzeste zuerst" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Anzeigen" + #~ msgid "Show {0}" #~ msgstr "Zeige {0}" #~ msgid "Show all" #~ msgstr "Alle anzeigen" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Audio-Player anzeigen" @@ -3473,11 +3776,11 @@ msgstr "Daten anzeigen" msgid "Show IP addresses" msgstr "IP-Adressen anzeigen" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Weniger anzeigen" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Mehr anzeigen" @@ -3490,14 +3793,14 @@ msgstr "Referenzen anzeigen" msgid "Show revision data" msgstr "Revisionsdaten anzeigen" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Zeitachse im Bericht anzeigen (Feature-Anfrage)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Zeitstempel anzeigen (experimentell)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "{displayFrom}–{displayTo} von {totalItems} Einträgen werden angezeigt" @@ -3516,35 +3819,35 @@ msgstr "Überspringen" #~ msgid "Skip data privacy slide (Host manages consent)" #~ msgstr "Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Übersprungen, da die Auswahl zu groß war." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Einige können übersprungen werden (kein Transkript oder Auswahl zu groß)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Etwas ist schief gelaufen" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Etwas ist schief gelaufen" @@ -3564,16 +3867,16 @@ msgstr "Beim Generieren des Geheimnisses ist ein Fehler aufgetreten." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Beim Hochladen der Datei ist ein Fehler aufgetreten: {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Da ist was schiefgelaufen. Versuch es gleich nochmal." +msgid "participant.explore.generic.error.message" +msgstr "Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Etwas ist schief gelaufen. Bitte versuchen Sie es erneut." @@ -3582,8 +3885,8 @@ msgstr "Etwas ist schief gelaufen. Bitte versuchen Sie es erneut." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Sortieren" @@ -3595,28 +3898,32 @@ msgstr "Quelle {0}" #~ msgid "Sources:" #~ msgstr "Quellen:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Spanisch" #~ msgid "Speaker" #~ msgstr "Sprecher" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Spezifischer Kontext" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Konkrete Details" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Konkrete Details – ausgewählte Gespräche" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Neu starten" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Neues Gespräch starten" @@ -3639,12 +3946,12 @@ msgstr "Neu beginnen" msgid "Status" msgstr "Status" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Stopp" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Beenden" @@ -3652,19 +3959,19 @@ msgstr "Beenden" msgid "Strategic Planning" msgstr "Strategische Planung" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Absenden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Absenden" #~ msgid "Submitted via text input" #~ msgstr "Über Text eingereicht" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Erfolg" @@ -3677,38 +3984,38 @@ msgstr "Vorgeschlagen:" msgid "Summarize" msgstr "Zusammenfassen" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Fass dieses Interview als teilbaren Artikel zusammen" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Zusammenfassung" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" -msgstr "" +msgstr "Zusammenfassung (wenn verfügbar)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Zusammenfassung erstellt." #~ msgid "Summary not available yet" #~ msgstr "Zusammenfassung noch nicht verfügbar" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Zusammenfassung neu erstellt." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist." -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -3721,11 +4028,11 @@ msgstr "Zur Texteingabe wechseln" msgid "System" msgstr "System" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Tags" @@ -3742,7 +4049,7 @@ msgstr "Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag f msgid "participant.refine.make.concrete.description" msgstr "Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Template übernommen" @@ -3750,27 +4057,27 @@ msgstr "Template übernommen" msgid "Templates" msgstr "Vorlagen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" -msgstr "" +msgstr "Webhook testen" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Text" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "Vielen Dank für Ihre Teilnahme!" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Danke-Seite Inhalt" -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" msgstr "Vielen Dank!" -#: src/routes/auth/Login.tsx:141 +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App." @@ -3782,7 +4089,7 @@ msgid "The code didn't work, please try again." msgstr "Der Code hat nicht funktioniert, versuch’s nochmal." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." @@ -3794,9 +4101,9 @@ msgstr "Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." -msgstr "" +msgstr "Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server)." #: src/components/chat/Sources.tsx:22 msgid "The following conversations were automatically added to the context" @@ -3808,11 +4115,11 @@ msgstr "Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt" #~ msgid "the project library." #~ msgstr "die Projektbibliothek." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist." @@ -3825,23 +4132,27 @@ msgstr "Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist." #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Design" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." @@ -3856,7 +4167,7 @@ msgstr "Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte ver #~ msgstr "Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen." @@ -3864,7 +4175,7 @@ msgstr "Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlosse msgid "These default view templates will be generated when you create your first library." msgstr "Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Denke nach..." @@ -3884,7 +4195,7 @@ msgstr "Dieses Gespräch ist eine Kopie von" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "Diese E-Mail ist bereits in der Liste." @@ -3892,17 +4203,17 @@ msgstr "Diese E-Mail ist bereits in der Liste." #~ msgstr "Diese E-Mail ist bereits für Benachrichtigungen angemeldet." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "Diese Funktion wird in {remainingTime} Sekunden verfügbar sein." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." -msgstr "" +msgstr "Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird." #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:209 @@ -3921,38 +4232,38 @@ msgstr "Bibliothek" #~ msgid "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." #~ msgstr "Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "Diese Sprache wird für das Teilnehmerportal verwendet." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen." #~ msgid "This project library was generated on" #~ msgstr "Diese Projektbibliothek wurde generiert am" -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten." -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "Dieser Bericht ist derzeit nicht verfügbar. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "Dieser Bericht wurde von {0} Personen geöffnet" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen" @@ -3960,11 +4271,11 @@ msgstr "Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch begi msgid "This will clear your current input. Are you sure?" msgstr "Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert." @@ -3974,7 +4285,7 @@ msgid "add.tag.filter.modal.info" msgstr "Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "Wir erstellen dein Artefakt neu. Das kann einen Moment dauern." @@ -3983,7 +4294,7 @@ msgstr "Wir erstellen dein Artefakt neu. Das kann einen Moment dauern." msgid "participant.concrete.loading.artefact.description" msgstr "Wir laden dein Artefakt. Das kann einen Moment dauern." -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "Dies wird persönliche Identifizierbare Informationen mit ersetzen." @@ -3994,35 +4305,43 @@ msgstr "Dies wird persönliche Identifizierbare Informationen mit ers msgid "Timestamp" msgstr "Zeitstempel" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:592 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:815 msgid "Timestamps and duration" -msgstr "" +msgstr "Zeitstempel und Dauer" -#: src/components/participant/ParticipantBody.tsx:143 +#: src/components/participant/ParticipantBody.tsx:144 msgid "Tip" msgstr "Tipp" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:771 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:997 msgid "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." -msgstr "" +msgstr "Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert." + +#: src/components/conversation/ConversationEdit.tsx:319 +msgid "Title" +msgstr "Titel" -#: src/components/conversation/ConversationEdit.tsx:200 +#: src/components/conversation/ConversationEdit.tsx:381 msgid "To assign a new tag, please create it first in the project overview." msgstr "Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht." -#: src/components/report/CreateReportForm.tsx:91 +#: src/components/report/CreateReportForm.tsx:92 msgid "To generate a report, please start by adding conversations in your project" msgstr "Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:537 +#: src/components/conversation/SelectAllConfirmationModal.tsx:565 msgid "select.all.modal.context.limit" msgstr "Zu groß" -#: src/components/conversation/SelectAllConfirmationModal.tsx:128 +#: src/components/conversation/SelectAllConfirmationModal.tsx:129 msgid "Too long" msgstr "Zu lang" +#: src/components/conversation/ConversationEdit.tsx:340 +msgid "Topic-based title describing what was discussed" +msgstr "Thematischer Titel, der beschreibt, was besprochen wurde" + #: src/components/view/CreateViewForm.tsx:123 msgid "Topics" msgstr "Themen" @@ -4034,12 +4353,12 @@ msgstr "Themen" msgid "Transcribing..." msgstr "Transcribieren..." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:83 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:84 #: src/components/layout/ProjectConversationLayout.tsx:47 msgid "Transcript" msgstr "Transkript" -#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:28 msgid "Transcript copied to clipboard" msgstr "Transkript in die Zwischenablage kopiert" @@ -4128,15 +4447,15 @@ msgstr "" "\n" "Hinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:624 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:850 msgid "Trigger automated workflows in tools like Zapier, Make, or n8n" -msgstr "" +msgstr "Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen" #: src/components/announcement/AnnouncementErrorState.tsx:34 msgid "Try Again" msgstr "Erneut versuchen" -#: src/components/chat/ChatModeSelector.tsx:163 +#: src/components/chat/ChatModeSelector.tsx:162 msgid "Try asking" msgstr "Frag mal" @@ -4160,32 +4479,36 @@ msgstr "Zwei-Faktor-Authentifizierung aktiviert" msgid "Type" msgstr "Typ" -#: src/routes/project/chat/ProjectChatRoute.tsx:726 +#: src/routes/project/chat/ProjectChatRoute.tsx:742 msgid "Type a message..." msgstr "Nachricht eingeben..." -#: src/components/participant/ParticipantConversationText.tsx:207 +#: src/components/participant/ParticipantConversationText.tsx:214 msgid "Type your response here" msgstr "Geben Sie hier Ihre Antwort ein" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:19 -msgid "participant.concrete.artefact.error.title" -msgstr "Artefakt konnte nicht geladen werden" - #: src/components/settings/AuditLogsCard.tsx:511 msgid "Unable to load audit logs." msgstr "Audit-Protokolle konnten nicht geladen werden." +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +msgid "participant.outcome.error.title" +msgstr "Ergebnis kann nicht geladen werden" + #: src/components/participant/verify/VerifyArtefact.tsx:89 -msgid "Unable to load the generated artefact. Please try again." -msgstr "Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut." +#~ msgid "Unable to load the generated artefact. Please try again." +#~ msgstr "Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut." + +#: src/components/participant/verify/VerifyArtefact.tsx:90 +msgid "Unable to load the generated outcome. Please try again." +msgstr "Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut." #: src/components/conversation/ConversationChunkAudioTranscript.tsx:69 msgid "Unable to process this chunk" msgstr "Dieser Teil kann nicht verarbeitet werden" -#: src/routes/project/chat/ProjectChatRoute.tsx:431 +#: src/routes/project/chat/ProjectChatRoute.tsx:433 msgid "Undo" msgstr "Rückgängig" @@ -4193,15 +4516,15 @@ msgstr "Rückgängig" msgid "Unknown" msgstr "Unbekannt" -#: src/components/conversation/SelectAllConfirmationModal.tsx:132 +#: src/components/conversation/SelectAllConfirmationModal.tsx:133 msgid "Unknown reason" msgstr "Unbekannter Grund" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:39 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:41 msgid "unread announcement" msgstr "ungelesene Ankündigung" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:40 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:42 msgid "unread announcements" msgstr "ungelesene Ankündigungen" @@ -4217,20 +4540,20 @@ msgstr "Abmelden" msgid "Untitled Conversation" msgstr "Unbenanntes Gespräch" -#: src/components/report/UpdateReportModalButton.tsx:66 +#: src/components/report/UpdateReportModalButton.tsx:67 msgid "Update" msgstr "Aktualisieren" -#: src/components/report/UpdateReportModalButton.tsx:70 -#: src/components/report/UpdateReportModalButton.tsx:122 +#: src/components/report/UpdateReportModalButton.tsx:76 +#: src/components/report/UpdateReportModalButton.tsx:133 msgid "Update Report" msgstr "Bericht aktualisieren" -#: src/components/report/UpdateReportModalButton.tsx:64 +#: src/components/report/UpdateReportModalButton.tsx:65 msgid "Update the report to include the latest data" msgstr "Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten" -#: src/components/report/UpdateReportModalButton.tsx:91 +#: src/components/report/UpdateReportModalButton.tsx:100 msgid "Update your report to include the latest changes in your project. The link to share the report would remain the same." msgstr "Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben." @@ -4242,28 +4565,33 @@ msgstr "Upgrade" msgid "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." msgstr "Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort." +#: src/components/settings/WhitelabelLogoCard.tsx:152 #: src/components/project/ProjectUploadSection.tsx:15 -#: src/components/dropzone/UploadConversationDropzone.tsx:504 -#: src/components/conversation/ConversationAccordion.tsx:409 +#: src/components/dropzone/UploadConversationDropzone.tsx:506 +#: src/components/conversation/ConversationAccordion.tsx:414 msgid "Upload" msgstr "Hochladen" +#: src/components/settings/WhitelabelLogoCard.tsx:100 +msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Ein benutzerdefiniertes Logo hochladen, um das Dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen." + #~ msgid "Upload Audio" #~ msgstr "Audio hochladen" -#: src/components/dropzone/UploadConversationDropzone.tsx:517 +#: src/components/dropzone/UploadConversationDropzone.tsx:519 msgid "Upload Complete" msgstr "Hochladen abgeschlossen" -#: src/components/dropzone/UploadConversationDropzone.tsx:498 +#: src/components/dropzone/UploadConversationDropzone.tsx:499 msgid "Upload conversations" msgstr "Gespräche hochladen" -#: src/components/dropzone/UploadConversationDropzone.tsx:334 +#: src/components/dropzone/UploadConversationDropzone.tsx:335 msgid "Upload failed. Please try again." msgstr "Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut." -#: src/components/dropzone/UploadConversationDropzone.tsx:694 +#: src/components/dropzone/UploadConversationDropzone.tsx:725 msgid "Upload Files" msgstr "Dateien hochladen" @@ -4276,43 +4604,47 @@ msgstr "Dateien hochladen" #~ msgid "Uploaded" #~ msgstr "Hochgeladen" -#: src/components/dropzone/UploadConversationDropzone.tsx:518 +#: src/components/dropzone/UploadConversationDropzone.tsx:520 msgid "Uploading Audio Files..." msgstr "Audio-Dateien werden hochgeladen..." #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:60 +#: src/components/participant/StopRecordingConfirmationModal.tsx:62 msgid "participant.modal.uploading" msgstr "Audio wird hochgeladen..." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:550 +#: src/components/participant/ParticipantConversationAudio.tsx:556 msgid "participant.modal.interruption.uploading" msgstr "Audio wird hochgeladen..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:211 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:406 msgid "URL is required" -msgstr "" +msgstr "URL ist erforderlich" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:208 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:403 msgid "URL must start with http:// or https://" -msgstr "" +msgstr "URL muss mit http:// oder https:// beginnen" #~ msgid "Use experimental features" #~ msgstr "Experimentelle Funktionen verwenden" -#: src/components/conversation/RetranscribeConversation.tsx:152 +#: src/components/conversation/RetranscribeConversation.tsx:169 msgid "Use PII Redaction" msgstr "PII Redaction verwenden" -#: src/routes/project/chat/ProjectChatRoute.tsx:748 -#: src/routes/project/chat/ProjectChatRoute.tsx:778 +#: src/routes/project/chat/ProjectChatRoute.tsx:765 +#: src/routes/project/chat/ProjectChatRoute.tsx:795 msgid "Use Shift + Enter to add a new line" msgstr "Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:820 +#: src/components/settings/WhitelabelLogoCard.tsx:134 +msgid "Using default Dembrane logo" +msgstr "Standard-Dembrane-Logo verwendet" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" -msgstr "" +msgstr "Webhooks verwenden? Wir würden gerne von Ihnen hören" #~ msgid "Verification Topics" #~ msgstr "Verification Topics" @@ -4321,17 +4653,17 @@ msgstr "" #~ msgstr "verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:111 +#: src/components/conversation/SelectAllConfirmationModal.tsx:112 msgid "select.all.modal.verified" msgstr "Verifiziert" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:436 +#: src/components/conversation/SelectAllConfirmationModal.tsx:444 msgid "select.all.modal.loading.verified" msgstr "Verifiziert" #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:1333 +#: src/components/conversation/ConversationAccordion.tsx:1347 msgid "conversation.filters.verified.text" msgstr "Verifiziert" @@ -4341,11 +4673,21 @@ msgstr "Verifiziert" #~ msgid "Verified Artefacts" #~ msgstr "Verified Artefacts" -#: src/components/conversation/ConversationAccordion.tsx:579 +#: src/components/conversation/ConversationAccordion.tsx:569 msgid "verified artifacts" msgstr "verifizierte Artefakte" -#: src/routes/auth/Login.tsx:277 +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" +msgstr "dembrane Verifizieren" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verifizieren" + +#: src/routes/auth/Login.tsx:288 msgid "Verify code" msgstr "Code verifizieren" @@ -4366,11 +4708,11 @@ msgstr "Ansicht" msgid "View Details" msgstr "Details anzeigen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:601 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:827 msgid "View example payload" -msgstr "" +msgstr "Beispiel-Payload anzeigen" -#: src/components/participant/ParticipantBody.tsx:229 +#: src/components/participant/ParticipantBody.tsx:242 msgid "View your responses" msgstr "Ihre Antworten anzeigen" @@ -4391,7 +4733,7 @@ msgstr "Willst du ein Template zu „Dembrane“ hinzufügen?" #~ msgstr "Warning: You have added {0} key terms. Only the first {ASSEMBLYAI_MAX_HOTWORDS} will be used by the transcription engine." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:366 +#: src/components/participant/MicrophoneTest.tsx:389 msgid "participant.alert.microphone.access.issue" msgstr "Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen." @@ -4412,7 +4754,7 @@ msgstr "Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überpr #~ msgid "We have sent you an email with next steps. If you don't see it, check your spam folder." #~ msgstr "Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner." -#: src/routes/auth/CheckYourEmail.tsx:14 +#: src/routes/auth/CheckYourEmail.tsx:15 msgid "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" msgstr "Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com" @@ -4421,15 +4763,15 @@ msgstr "Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn S #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:450 -msgid "participant.modal.refine.info.reason" -msgstr "Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können." +msgid "participant.modal.echo.info.reason" +msgstr "Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können." -#: src/routes/participant/ParticipantPostConversation.tsx:252 +#: src/routes/participant/ParticipantPostConversation.tsx:263 msgid "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." msgstr "Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:291 +#: src/components/participant/MicrophoneTest.tsx:292 msgid "participant.test.microphone.description" msgstr "Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat." @@ -4440,34 +4782,34 @@ msgstr "Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung d msgid "We’re picking up some silence. Try speaking up so your voice comes through clearly." msgstr "Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:745 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:971 msgid "Webhook" -msgstr "" +msgstr "Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:216 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:411 msgid "Webhook URL" -msgstr "" +msgstr "Webhook URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:701 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:927 msgid "Webhooks" -msgstr "" +msgstr "Webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:545 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:742 msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -msgstr "" +msgstr "Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \"Benachrichtigungssystem\" für Ihre anderen Tools." -#: src/components/participant/ParticipantBody.tsx:124 +#: src/components/participant/ParticipantBody.tsx:125 msgid "Welcome" msgstr "Willkommen" -#: src/routes/auth/Login.tsx:108 +#: src/routes/auth/Login.tsx:109 msgid "Welcome back" msgstr "Welcome back" #~ msgid "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." #~ msgstr "Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“." -#: src/routes/project/chat/ProjectChatRoute.tsx:529 +#: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." msgstr "Willkommen beim Dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen." @@ -4478,52 +4820,72 @@ msgstr "Willkommen bei Dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:528 +#: src/routes/project/chat/ProjectChatRoute.tsx:535 msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." msgstr "Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“." -#: src/components/report/CreateReportForm.tsx:79 +#: src/components/report/CreateReportForm.tsx:80 msgid "Welcome to Reports!" msgstr "Willkommen bei Berichten!" -#: src/routes/project/ProjectsHome.tsx:152 +#: src/routes/project/ProjectsHome.tsx:154 msgid "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" msgstr "Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \"Erstellen\", um mit der Konfiguration zu beginnen!" -#: src/routes/auth/Login.tsx:191 +#: src/routes/auth/Login.tsx:192 msgid "Welcome!" msgstr "Willkommen!" -#: src/components/chat/ChatModeSelector.tsx:46 +#: src/components/chat/ChatModeSelector.tsx:47 msgid "What are the main themes across all conversations?" msgstr "Was sind die Hauptthemen über alle Gespräche hinweg?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:538 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 msgid "What are webhooks? (2 min read)" -msgstr "" +msgstr "Was sind Webhooks? (2 min Lesezeit)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:576 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:799 msgid "What data is sent?" -msgstr "" +msgstr "Welche Daten werden gesendet?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:196 +#: src/components/participant/verify/VerifySelection.tsx:201 msgid "participant.concrete.selection.title" msgstr "Was möchtest du konkret machen?" -#: src/components/chat/ChatModeSelector.tsx:48 +#: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" msgstr "Welche Muster ergeben sich aus den Daten?" -#: src/components/chat/ChatModeSelector.tsx:54 +#: src/components/chat/ChatModeSelector.tsx:55 msgid "What were the key moments in this conversation?" msgstr "Was waren die Schlüsselmomente in diesem Gespräch?" -#: src/components/chat/ChatModeSelector.tsx:242 +#: src/components/chat/ChatModeSelector.tsx:250 msgid "What would you like to explore?" msgstr "Was willst du dir anschauen?" -#: src/components/report/CreateReportForm.tsx:120 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:778 +msgid "When a participant opens the portal, enters their details, and begins a conversation" +msgstr "Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:785 +msgid "When all audio has been converted to text and the full transcript is available" +msgstr "Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:773 +msgid "When are webhooks triggered?" +msgstr "Wenn werden Webhooks ausgelöst?" + +#: src/components/project/ProjectPortalEditor.tsx:1178 +msgid "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." +msgstr "Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden." + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:792 +msgid "When the summary is ready (includes both transcript and summary)" +msgstr "Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)" + +#: src/components/report/CreateReportForm.tsx:121 msgid "will be included in your report" msgstr "wird in Ihrem Bericht enthalten sein" @@ -4533,7 +4895,7 @@ msgid "add.tag.filter.modal.description" msgstr "Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:177 +#: src/components/participant/ParticipantConversationText.tsx:179 msgid "participant.button.finish.yes.text.mode" msgstr "Ja" @@ -4546,7 +4908,7 @@ msgid "You are already unsubscribed or your link is invalid." msgstr "Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig." #. placeholder {0}: MAX_FILES - selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:399 +#: src/components/dropzone/UploadConversationDropzone.tsx:400 msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." msgstr "Sie können nur bis zu {MAX_FILES} Dateien gleichzeitig hochladen. Nur die ersten {0} Dateien werden hinzugefügt." @@ -4554,16 +4916,16 @@ msgstr "Sie können nur bis zu {MAX_FILES} Dateien gleichzeitig hochladen. Nur d #~ msgstr "Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:247 +#: src/components/conversation/SelectAllConfirmationModal.tsx:249 msgid "select.all.modal.already.added" msgstr "Sie haben bereits <0>{existingContextCount, plural, one {# Unterhaltung} other {# Unterhaltungen}} zu diesem Chat hinzugefügt." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \"Weiter\", um mit der Sitzung fortzufahren." @@ -4571,25 +4933,25 @@ msgstr "Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \"Weiter\", um m msgid "You have successfully unsubscribed." msgstr "Sie haben sich erfolgreich abgemeldet." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "Sie können auch wählen, ein weiteres Gespräch aufzunehmen." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "Du bekommst gleich {objectLabel} zum Verifizieren." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!" @@ -4606,11 +4968,11 @@ msgstr "Ihre Eingaben werden automatisch gespeichert." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Ihre Antworten" @@ -4619,7 +4981,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Ihre Ansichten" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index b154f561..794cc7bd 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Ankündigungen\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Verfügbar\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"iH8pgl\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Erstellt am\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Dembrane Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Niederländisch\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"ycR/52\":[\"Dembrane Echo aktivieren\"],\"mKGCnZ\":[\"Dembrane ECHO aktivieren\"],\"Dh2kHP\":[\"Dembrane Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Dembrane Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf Dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Optionen\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"participant.button.refine\":[\"Verfeinern\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"4LFZoj\":[\"Code verifizieren\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim Dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Dembrane Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"ycR/52\":[\"Dembrane Echo aktivieren\"],\"mKGCnZ\":[\"Dembrane ECHO aktivieren\"],\"Dh2kHP\":[\"Dembrane Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Dembrane Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf Dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das Dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-Dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"participant.echo.verify\":[\"Verifizieren\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim Dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 8eb3154c..070ff821 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -39,17 +39,17 @@ msgid "Something went wrong" msgstr "Something went wrong" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "We're preparing your workspace." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Preparing your dashboard" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Welcome back" @@ -93,11 +93,6 @@ msgstr "Welcome back" #~ msgid "participant.modal.stop.message" #~ msgstr "Are you sure you want to finish the conversation?" -#. js-lingui-explicit-id -#: src/routes/participant/ParticipantConversation.tsx:583 -#~ msgid "participant.button.echo" -#~ msgstr "ECHO" - #. js-lingui-explicit-id #: src/routes/participant/ParticipantConversation.tsx:658 #~ msgid "participant.button.is.recording.echo" @@ -163,11 +158,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.action.button.cancel" #~ msgstr "Cancel" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:705 -#~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" - #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:718 #~ msgid "dashboard.dembrane.verify.description" @@ -243,11 +233,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.action.button.save" #~ msgstr "Save" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:758 -#~ msgid "dashboard.dembrane.verify.topic.select" -#~ msgstr "Select which topics participants can use for verification." - #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 #~ msgid "participant.echo.generic.error.message" @@ -314,11 +299,81 @@ msgstr "Welcome back" #~ msgstr "We saved your recording up to <0>{formattedDuration} but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "\"Go deeper\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "\"Make it concrete\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Refine\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Feature available soon" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Go deeper" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Make it concrete" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Make it concrete" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Refine" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Regenerating the artefact" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Select which topics participants can use for \"Make it concrete\"." + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "Unable to Load Artefact" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr " Generating library can take up to an hour." -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr " Submit" @@ -331,42 +386,42 @@ msgstr " Unsubscribe from Notifications" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "\"Go deeper\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" available soon" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "\"Make it concrete\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Explore\" available soon" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Refine\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Verify\" available soon" #: src/components/conversation/ConversationAccordion.tsx:413 #~ msgid "(for enhanced audio processing)" #~ msgstr "(for enhanced audio processing)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# tag} other {# tags}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Tag:} other {Tags:}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -377,7 +432,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} added" @@ -397,11 +452,11 @@ msgstr "{0} Conversations • Edited {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} not added" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} selected" @@ -414,7 +469,7 @@ msgstr "{conversationCount} selected" #~ msgstr "{diffInHours}h ago" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Currently # conversation is ready to be analyzed.} other {Currently # conversations are ready to be analyzed.}}" @@ -422,7 +477,7 @@ msgstr "{finishedConversationsCount, plural, one {Currently # conversation is re #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} minutes and {seconds} seconds" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} reading now" @@ -431,7 +486,7 @@ msgstr "{readingNow} reading now" #~ msgstr "{seconds} seconds" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{unfinishedConversationsCount} still processing." @@ -456,19 +511,19 @@ msgstr "+{hiddenCount} conversations" msgid "0 Aspects" msgstr "0 Aspects" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" msgstr "1. You provide a URL where you want to receive notifications" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" msgstr "2. When a conversation event happens, we automatically send the conversation data to your URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" msgstr "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" @@ -484,17 +539,17 @@ msgstr "Action By" msgid "Action On" msgstr "Action On" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Actions" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Active filters" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Add" @@ -502,16 +557,16 @@ msgstr "Add" msgid "Add additional context (Optional)" msgstr "Add additional context (Optional)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Add all that apply" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Add Conversations to Context" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Add key terms or proper nouns to improve transcript quality and accuracy." @@ -519,7 +574,7 @@ msgstr "Add key terms or proper nouns to improve transcript quality and accuracy msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Add new recordings to this project. Files you upload here will be processed and appear in conversations." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Add Tag" @@ -528,7 +583,7 @@ msgstr "Add Tag" msgid "add.tag.filter.modal.title" msgstr "Add Tag to Filters" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Add Tags" @@ -537,62 +592,66 @@ msgstr "Add Tags" msgid "add.tag.filter.modal.add" msgstr "Add to Filters" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Add to this chat" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" msgstr "Add Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" msgstr "Add Your First Webhook" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Added" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "Added emails" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "Adding <0>{totalCount, plural, one {# conversation} other {# conversations}} to the chat" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "Adding <0>{totalCount, plural, one {# conversation} other {# conversations}} with the following filters:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "Adding <0>{totalCount, plural, one {# more conversation} other {# more conversations}}" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "Adding <0>{totalCount, plural, one {# more conversation} other {# more conversations}} with the following filters:" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Adding Context:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Adding Conversations" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Adjust the base font size for the interface" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" msgstr "Advanced" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Advanced (Tips and best practices)" @@ -600,7 +659,7 @@ msgstr "Advanced (Tips and best practices)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Advanced (Tips and tricks)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Advanced Settings" @@ -620,7 +679,7 @@ msgstr "All Conversations" #~ msgid "All conversations ready" #~ msgstr "All conversations ready" -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "All files were uploaded successfully." @@ -628,7 +687,7 @@ msgstr "All files were uploaded successfully." #~ msgid "All Insights" #~ msgstr "All Insights" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Allow participants using the link to start new conversations" @@ -636,17 +695,17 @@ msgstr "Allow participants using the link to start new conversations" msgid "Almost there" msgstr "Almost there" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Already added to this chat" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Already in context" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "An email notification will be sent to {0} participant{1}. Do you want to proceed?" @@ -654,11 +713,11 @@ msgstr "An email notification will be sent to {0} participant{1}. Do you want to #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "An error occurred while loading the Portal. Please contact the support team." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "An error occurred." @@ -697,7 +756,7 @@ msgstr "" "Note: If the similarities/differences are too superficial, let me know we need more complex material to analyze." #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" msgstr "Announcements" @@ -705,26 +764,30 @@ msgstr "Announcements" #~ msgid "Announcements" #~ msgstr "Announcements" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Anonymize Transcripts" + #: src/components/participant/ParticipantInitiateForm.tsx:49 #~ msgid "Anonymous Participant" #~ msgstr "Anonymous Participant" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "Approve" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Approved" #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." msgstr "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "Are you sure you want to delete this conversation? This action cannot be undone." @@ -732,7 +795,7 @@ msgstr "Are you sure you want to delete this conversation? This action cannot be #~ msgid "Are you sure you want to delete this project?" #~ msgstr "Are you sure you want to delete this project?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "Are you sure you want to delete this project? This action cannot be undone." @@ -744,12 +807,12 @@ msgstr "Are you sure you want to delete this project? This action cannot be undo #~ msgid "Are you sure you want to delete this tag?" #~ msgstr "Are you sure you want to delete this tag?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "Are you sure you want to finish the conversation?" @@ -765,45 +828,49 @@ msgstr "Are you sure you want to generate the library? This will take a while an #~ msgid "Are you sure you want to generate the library? This will take a while." #~ msgstr "Are you sure you want to generate the library? This will take a while." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "Are you sure you want to regenerate the summary? You will lose the current summary." #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "Artefact approved successfully!" +#~ msgid "Artefact approved successfully!" +#~ msgstr "Artefact approved successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "Artefact reloaded successfully!" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "Artefact reloaded successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "Artefact revised successfully!" +#~ msgid "Artefact revised successfully!" +#~ msgstr "Artefact revised successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "Artefact updated successfully!" +#~ msgid "Artefact updated successfully!" +#~ msgstr "Artefact updated successfully!" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "artefacts" +#~ msgid "artefacts" +#~ msgstr "artefacts" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefacts" +#~ msgid "Artefacts" +#~ msgstr "Artefacts" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Ask" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "Ask for Email?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "Ask for Name?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Ask participants to provide their name when they start a conversation" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Ask participants to provide their name when they start a conversation" #: src/routes/project/library/ProjectLibraryAspect.tsx:51 msgid "Aspect" @@ -824,11 +891,15 @@ msgstr "Aspects" #~ msgstr "At least one topic must be selected to enable Dembrane Verify" #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "At least one topic must be selected to enable Make it concrete" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "At least one topic must be selected to enable Make it concrete" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "At least one topic must be selected to enable Verify" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect." @@ -862,21 +933,33 @@ msgstr "Audit logs exported to CSV" msgid "Audit logs exported to JSON" msgstr "Audit logs exported to JSON" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Authenticator code" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Auto-generate titles" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Auto-generate Titles" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Auto-generated or enter manually" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Auto-select" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Auto-select disabled" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Auto-select enabled" @@ -884,15 +967,19 @@ msgstr "Auto-select enabled" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Auto-select sources to add to the chat" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Automatically includes relevant conversations for analysis without manual selection" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" msgstr "Automatically save transcripts to your CRM or database" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." msgstr "Automatically send conversation data to your other tools and services when events occur." @@ -900,30 +987,31 @@ msgstr "Automatically send conversation data to your other tools and services wh msgid "Available" msgstr "Available" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Back" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Back" -#: src/components/participant/ParticipantOnboardingCards.tsx:273 -#~ msgid "Back" -#~ msgstr "Back" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Back to Selection" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Basic (Essential tutorial slides)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Basic Settings" @@ -931,17 +1019,19 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Beta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -954,52 +1044,52 @@ msgstr "Beta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Big Picture - Themes & patterns" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" msgstr "Book a call" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Brainstorm Ideas" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" msgstr "Build custom dashboards with real-time conversation data" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Cancel" @@ -1008,7 +1098,7 @@ msgstr "Cancel" msgid "add.tag.filter.modal.cancel" msgstr "Cancel" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "Cannot add empty conversation" @@ -1020,16 +1110,16 @@ msgstr "Cannot add empty conversation" msgid "Changes will be saved automatically" msgstr "Changes will be saved automatically" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Chat" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Chat | Dembrane" @@ -1039,7 +1129,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Chats" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Chats" @@ -1056,15 +1146,23 @@ msgstr "Check microphone access" #~ msgid "Check microphone access" #~ msgstr "Check microphone access" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Check your email" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Checking..." +#~ msgid "Checking..." +#~ msgstr "Checking..." + +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Choose a logo file" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Choose from your other projects" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" msgstr "Choose when you want to receive notifications" @@ -1076,7 +1174,7 @@ msgstr "Choose your preferred theme for the interface" #~ msgid "Citing the following sources" #~ msgstr "Citing the following sources" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Click \"Upload Files\" when you're ready to start the upload process." @@ -1088,22 +1186,30 @@ msgstr "Click to edit" msgid "Click to see all {totalCount} conversations" msgstr "Click to see all {totalCount} conversations" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Clone from another project" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Clone from Project" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Clone project" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Clone Project" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Close" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Close" @@ -1111,7 +1217,7 @@ msgstr "Close" msgid "Collection" msgstr "Collection" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" msgstr "Common use cases:" @@ -1123,16 +1229,16 @@ msgstr "Compare & Contrast" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Compare and contrast the following items provided in the context." -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Complete" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Concrete Topics" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Confirm" @@ -1141,12 +1247,12 @@ msgstr "Confirm" msgid "Confirm New Password" msgstr "Confirm New Password" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Confirm Password" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Confirm Publishing" @@ -1154,7 +1260,7 @@ msgstr "Confirm Publishing" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Confirm your password to generate a new secret for your authenticator app." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Connecting to report services..." @@ -1174,7 +1280,7 @@ msgstr "Connection unhealthy" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Contact your sales representative to activate this feature today!" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Context" @@ -1187,8 +1293,8 @@ msgstr "Context added:" #~ msgstr "Context limit reached" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Continue" @@ -1201,7 +1307,7 @@ msgstr "Continue" #~ msgid "conversation" #~ msgstr "conversation" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Conversation added to chat" @@ -1222,7 +1328,7 @@ msgstr "Conversation Ended" #~ msgid "Conversation processing" #~ msgstr "Conversation processing" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Conversation removed from chat" @@ -1231,19 +1337,19 @@ msgstr "Conversation removed from chat" msgid "Conversation Status" msgstr "Conversation Status" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Conversation Status Details" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" msgstr "Conversation tags" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "conversations" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Conversations" @@ -1259,32 +1365,38 @@ msgstr "Conversations" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Cooling down. Available in {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Copied" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Copied from original conversation" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" msgstr "Copied!" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Copy" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Copy link" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Copy link to share this report" @@ -1293,15 +1405,15 @@ msgstr "Copy link to share this report" msgid "Copy secret" msgstr "Copy secret" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Copy Summary" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" msgstr "Copy to Clipboard" @@ -1313,11 +1425,15 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Create" -#: src/routes/auth/Register.tsx:57 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Create a new webhook from scratch" + +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Create an Account" @@ -1331,7 +1447,7 @@ msgstr "Create Library" #~ msgstr "Create Library" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Create new view" @@ -1340,12 +1456,12 @@ msgstr "Create new view" #~ msgstr "Create new view" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Create Report" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Create View" @@ -1353,55 +1469,71 @@ msgstr "Create View" msgid "Create View" msgstr "Create View" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" msgstr "Create Webhook" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Created on" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Current logo" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Custom" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Custom Filename" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Custom Logo" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Custom title prompt" + #: src/components/project/ProjectDangerZone.tsx:28 #~ msgid "Danger Zone" #~ msgstr "Danger Zone" -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "Dashboard URL (direct link to conversation overview)" + +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Default" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Default - No tutorial (Only privacy statements)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Delete" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Delete" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Delete Conversation" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Delete Project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" msgstr "Delete Webhook" @@ -1417,8 +1549,8 @@ msgstr "Deleted successfully" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane is powered by AI. Please double-check responses." @@ -1468,11 +1600,11 @@ msgstr "Disable two-factor authentication" msgid "Disabled" msgstr "Disabled" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" msgstr "Do I need this?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "Do you want to contribute to this project?" @@ -1480,19 +1612,19 @@ msgstr "Do you want to contribute to this project?" msgid "Do you want to stay in the loop?" msgstr "Do you want to stay in the loop?" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Documentation" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Download" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Download all conversation transcripts generated for this project." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Download All Transcripts" @@ -1504,19 +1636,23 @@ msgstr "Download as" #~ msgid "Download audio" #~ msgstr "Download audio" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Download Audio" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "Download QR code" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Download transcript" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Download Transcript Options" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Drag audio files here or click to select files" @@ -1524,14 +1660,27 @@ msgstr "Drag audio files here or click to select files" msgid "Drag to reorder" msgstr "Drag to reorder" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Duration" + +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Dutch" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" msgstr "e.g., Slack Notifications, Make Workflow" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" + #: src/routes/participant/ParticipantConversation.tsx:512 #: src/routes/participant/ParticipantConversation.tsx:597 #~ msgid "ECHO" @@ -1552,19 +1701,19 @@ msgstr "e.g., Slack Notifications, Make Workflow" #~ msgid "ECHO!" #~ msgstr "ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" msgstr "Edit" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Edit Conversation" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Edit file name" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Edit Project" @@ -1581,16 +1730,16 @@ msgstr "Edit Report Content" msgid "report.editor.description" msgstr "Edit the report content using the rich text editor below. You can format text, add links, images, and more." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" msgstr "Edit Webhook" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Editing mode" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "Email" @@ -1610,7 +1759,7 @@ msgstr "Email verified successfully. You will be redirected to the login page in msgid "email@work.com" msgstr "email@work.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Empty" @@ -1634,30 +1783,34 @@ msgstr "Enable 2FA" #~ msgid "Enable Dembrane Verify" #~ msgstr "Enable Dembrane Verify" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Enable Explore" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Enable Go deeper" +#~ msgid "Enable Go deeper" +#~ msgstr "Enable Go deeper" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Enable Make it concrete" +#~ msgid "Enable Make it concrete" +#~ msgstr "Enable Make it concrete" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" msgstr "Enable participation" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Enable Report Notifications" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #: src/components/project/ProjectPortalEditor.tsx:395 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." @@ -1667,20 +1820,32 @@ msgstr "Enable this feature to allow participants to receive notifications when #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." + #: src/components/project/ProjectBasicEdit.tsx:165 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Enable transcript anonymization" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Enable two-factor authentication" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Enable Verify" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Enabled" @@ -1689,23 +1854,23 @@ msgstr "Enabled" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "End of list • All {0} conversations loaded" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "English" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Enter a key term or proper noun" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Enter a name for the new conversation" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Enter a name for your cloned project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" msgstr "Enter a secret key" @@ -1713,15 +1878,15 @@ msgstr "Enter a secret key" msgid "Enter a valid code to turn off two-factor authentication." msgstr "Enter a valid code to turn off two-factor authentication." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Enter filename (without extension)" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Enter new name for the chat:" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Enter the 6-digit code from your authenticator app." @@ -1741,16 +1906,20 @@ msgstr "Enter your password" msgid "Enter your query" msgstr "Enter your query" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Entered by the participant on the portal" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Error" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Error cloning project" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Error creating report" @@ -1762,8 +1931,8 @@ msgstr "Error loading announcements" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Error loading project" @@ -1771,30 +1940,30 @@ msgstr "Error loading project" #~ msgid "Error loading quotes" #~ msgstr "Error loading quotes" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Error occurred" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Error updating report" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Error uploading \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" msgstr "Events" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" msgstr "Events to Listen For" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Everything looks good – you can continue." @@ -1802,7 +1971,7 @@ msgstr "Everything looks good – you can continue." #~ msgid "Everything looks good – you can continue." #~ msgstr "Everything looks good – you can continue." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" msgstr "Example Webhook Payload" @@ -1817,46 +1986,59 @@ msgstr "Example Webhook Payload" #~ msgid "Experimental" #~ msgstr "Experimental" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Explore" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Explore" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Explore themes & patterns across all conversations" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "Exploring {conversationCount} conversations" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Export" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Failed" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Failed to add conversation to chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Failed to add conversation to chat{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Failed to add conversations to context" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Failed to approve artefact. Please try again." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Failed to approve artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Failed to approve outcome. Please try again." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Failed to copy chat. Please try again." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." @@ -1864,13 +2046,13 @@ msgstr "Failed to copy transcript. Please try again." msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Failed to disable Auto Select for this chat" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Failed to enable Auto Select for this chat" @@ -1882,7 +2064,7 @@ msgstr "Failed to enable Auto Select for this chat" msgid "Failed to finish conversation. Please try again." msgstr "Failed to finish conversation. Please try again." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Failed to generate {label}. Please try again." @@ -1890,7 +2072,7 @@ msgstr "Failed to generate {label}. Please try again." #~ msgid "Failed to generate Hidden gems. Please try again." #~ msgstr "Failed to generate Hidden gems. Please try again." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Failed to generate the summary. Please try again later." @@ -1911,7 +2093,7 @@ msgstr "Failed to get announcements" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Failed to load audio or the audio is not available" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" msgstr "Failed to load webhooks" @@ -1929,30 +2111,38 @@ msgstr "Failed to mark announcement as read" msgid "Failed to reconnect. Please try reloading the page." msgstr "Failed to reconnect. Please try reloading the page." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Failed to regenerate the summary. Please try again later." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Failed to reload. Please try again." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Failed to remove conversation from chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Failed to remove conversation from chat{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Failed to remove logo" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Failed to retranscribe conversation. Please try again." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Failed to revise artefact. Please try again." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Failed to revise artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Failed to revise outcome. Please try again." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1962,6 +2152,10 @@ msgstr "Failed to revise artefact. Please try again." msgid "Failed to stop recording on device change. Please try again." msgstr "Failed to stop recording on device change. Please try again." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Failed to upload logo" + #: src/routes/participant/ParticipantPostConversation.tsx:134 #: src/routes/participant/ParticipantPostConversation.tsx:139 #~ msgid "Failed to verify email status. Please try again." @@ -1969,38 +2163,42 @@ msgstr "Failed to stop recording on device change. Please try again." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" +msgid "participant.modal.echo.info.title" msgstr "Feature available soon" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "File \"{0}\" exceeds the maximum size of {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "File \"{0}\" has an unsupported format. Only audio files are allowed." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "File \"{0}\" is not a supported audio format. Only audio files are allowed." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "File \"{0}\" is too small ({1}). Minimum size is {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "File size: Min {0}, Max {1}, up to {MAX_FILES} files" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Filename from uploaded file" + #: src/components/conversation/ConversationAccordion.tsx:473 #~ msgid "Filter" #~ msgstr "Filter" @@ -2027,12 +2225,12 @@ msgid "participant.button.stop.finish" msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Finish" @@ -2042,7 +2240,7 @@ msgstr "Finish" #~ msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "Finish Conversation" @@ -2050,8 +2248,8 @@ msgstr "Finish Conversation" msgid "Finished" msgstr "Finished" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "First Name" @@ -2063,23 +2261,35 @@ msgstr "First Name" #~ msgid "Follow playback" #~ msgstr "Follow playback" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Font Size" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." msgstr "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "Forgot your password?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "French" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" msgstr "Full transcript (when available)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Generate" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Generate a summary first" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Generate insights from your conversations" @@ -2091,15 +2301,15 @@ msgstr "Generate secret" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Generate structured meeting notes based on the following discussion points provided in the context." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Generate Summary" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Generating the summary. Please wait..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "German" @@ -2108,7 +2318,7 @@ msgid "Get an immediate reply from Dembrane to help you deepen the conversation. msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." @@ -2116,29 +2326,24 @@ msgstr "Get an immediate reply from Dembrane to help you deepen the conversation msgid "Give me a list of 5-10 topics that are being discussed." msgstr "Give me a list of 5-10 topics that are being discussed." -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Go back" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Go back" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Go deeper" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Go deeper" +#~ msgid "Go deeper" +#~ msgstr "Go deeper" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Go home" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Go to new conversation" @@ -2146,16 +2351,20 @@ msgstr "Go to new conversation" #~ msgid "Grid view" #~ msgstr "Grid view" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "Has verified artifacts" -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Help us translate" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Hi, {0}" @@ -2163,10 +2372,14 @@ msgstr "Hi, {0}" msgid "Hidden" msgstr "Hidden" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Hidden gem" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Hide" + #: src/components/conversation/ConversationAccordion.tsx:555 #~ msgid "Hide {0}" #~ msgstr "Hide {0}" @@ -2191,15 +2404,15 @@ msgstr "Hide data" msgid "Hide revision data" msgstr "Hide revision data" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Home" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" msgstr "How it works:" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -2210,7 +2423,7 @@ msgstr "" "* What does success look like" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "I understand" @@ -2245,7 +2458,7 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." @@ -2253,11 +2466,11 @@ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you fe #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." #~ msgstr "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." msgstr "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." msgstr "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2269,7 +2482,7 @@ msgstr "If you're setting up webhook integrations, we'd love to learn about your #~ msgid "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" #~ msgstr "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Include portal link in report" @@ -2301,7 +2514,7 @@ msgstr "Insights" msgid "Invalid code. Please request a new one." msgstr "Invalid code. Please request a new one." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Invalid credentials." @@ -2329,21 +2542,20 @@ msgstr "It looks like the library is not available for your account. Please requ #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." +msgid "participant.outcome.error.description" +msgstr "It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italian" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Join {0} on Dembrane" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Join {0} on Dembrane" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -2357,12 +2569,12 @@ msgstr "Just a moment" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Language" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Last Name" @@ -2377,11 +2589,11 @@ msgstr "Last saved {0}" msgid "Last Updated" msgstr "Last Updated" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" msgstr "Learn more about webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" msgstr "Leave empty to keep existing" @@ -2395,7 +2607,7 @@ msgstr "Let us know!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Library" @@ -2425,7 +2637,7 @@ msgstr "Link" #~ msgstr "Live" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Live audio level:" @@ -2433,12 +2645,12 @@ msgstr "Live audio level:" #~ msgid "Live audio level:" #~ msgstr "Live audio level:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Live Preview" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Loading" @@ -2455,7 +2667,7 @@ msgstr "Loading actions..." msgid "participant.concrete.loading.artefact" msgstr "Loading artefact" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Loading audit logs…" @@ -2463,16 +2675,16 @@ msgstr "Loading audit logs…" msgid "Loading collections..." msgstr "Loading collections..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Loading concrete topics…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Loading microphones..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Loading transcript..." @@ -2480,54 +2692,52 @@ msgstr "Loading transcript..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "loading..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Loading..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Loading…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Login" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Login | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Login as an existing user" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo removed" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo updated successfully" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Logout" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Longest First" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Make it concrete" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Make it concrete" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Mark all read" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Mark as read" @@ -2549,47 +2759,47 @@ msgstr "Microphone access is still denied. Please check your settings and try ag #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Mode" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "More templates" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Move" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Move Conversation" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Move to Another Project" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Move to Project" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Name" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Name A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" msgstr "Name is required" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Name Z-A" @@ -2597,7 +2807,7 @@ msgstr "Name Z-A" msgid "New" msgstr "New" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" msgstr "New Conversation Name" @@ -2615,32 +2825,32 @@ msgstr "New conversations have been added since the creation of the library. Cre msgid "New Password" msgstr "New Password" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "New Project" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Newest First" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Next" @@ -2649,7 +2859,7 @@ msgstr "Next" #~ msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "No" @@ -2657,16 +2867,16 @@ msgstr "No" msgid "No actions found" msgstr "No actions found" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "No announcements available" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "No audit logs match the current filters." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "No chats found. Start a chat using the \"Ask\" button." @@ -2678,11 +2888,11 @@ msgstr "No chats found. Start a chat using the \"Ask\" button." msgid "No collections found" msgstr "No collections found" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "No concrete topics available." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "No content" @@ -2703,16 +2913,16 @@ msgstr "No conversations available to create library. Please add some conversati msgid "No conversations found." msgstr "No conversations found." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "No conversations yet" @@ -2724,16 +2934,16 @@ msgstr "No conversations yet" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "No new feedback detected yet. Please continue your discussion and try again soon." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "No projects found {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "No projects found for search term" @@ -2745,7 +2955,7 @@ msgstr "No projects found for search term" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "No report found" @@ -2753,20 +2963,19 @@ msgstr "No report found" #~ msgid "No resources found." #~ msgstr "No resources found." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "No results" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "No tags found" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "No tags have been added to this project yet. Add a tag using the text input above to get started." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "No Transcript Available" @@ -2774,7 +2983,7 @@ msgstr "No Transcript Available" #~ msgid "No transcript available for this conversation." #~ msgstr "No transcript available for this conversation." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "No transcript exists for this conversation yet. Please check back later." @@ -2786,11 +2995,11 @@ msgstr "No transcript exists for this conversation yet. Please check back later. #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "No tutorial (only Privacy statements)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "No verification topics are configured for this project." @@ -2798,12 +3007,16 @@ msgstr "No verification topics are configured for this project." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "No webhooks configured" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "No webhooks found" + #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "Not Added" @@ -2811,26 +3024,30 @@ msgstr "Not Added" msgid "Not available" msgstr "Not available" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Notify participants when a report is published." + #: src/components/conversation/ConversationChunkAudioTranscript.tsx:341 #~ msgid "Now" #~ msgstr "Now" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Oldest First" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "Ongoing" @@ -2838,7 +3055,7 @@ msgstr "Ongoing" #~ msgid "Ongoing" #~ msgstr "Ongoing" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Ongoing Conversations" @@ -2864,10 +3081,14 @@ msgstr "Open" #~ msgid "Open Documentation" #~ msgstr "Open Documentation" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "Open for Participation?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Open guide" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" msgstr "Open Host Guide" @@ -2881,26 +3102,58 @@ msgstr "Open troubleshooting guide" #~ msgid "Open troubleshooting guide" #~ msgstr "Open troubleshooting guide" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Open your authenticator app and enter the current six-digit code." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" msgstr "Optional" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Optional field on the start page" + +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Optional field on the thank you page" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Options" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Outcome approved successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Outcome reloaded successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Outcome revised successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Outcome updated!" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "outcomes" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Outcomes" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Overview" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Overview - Themes & patterns" @@ -2908,7 +3161,7 @@ msgstr "Overview - Themes & patterns" #~ msgid "Page" #~ msgstr "Page" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Page Content" @@ -2916,39 +3169,47 @@ msgstr "Page Content" msgid "Page not found" msgstr "Page not found" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Page Title" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Participant" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Participant Email" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Participant Emails" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Participant Features" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" msgstr "Participant name and email" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Participants will be able to select tags when creating conversations" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Password" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Password protect portal (request feature)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Passwords do not match" @@ -2957,7 +3218,7 @@ msgstr "Passwords do not match" #~ msgid "Pause" #~ msgstr "Pause" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Pause reading" @@ -2965,12 +3226,12 @@ msgstr "Pause reading" msgid "Pending" msgstr "Pending" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Pick the approach that fits your question" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Please allow microphone access to start the test." @@ -2978,7 +3239,7 @@ msgstr "Please allow microphone access to start the test." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Please allow microphone access to start the test." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Please check back later or contact the project owner for more information." @@ -2990,12 +3251,11 @@ msgstr "Please check your inputs for errors." #~ msgid "Please do not close your browser" #~ msgstr "Please do not close your browser" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Please enable participation to enable sharing" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Please enter a valid email." @@ -3003,7 +3263,7 @@ msgstr "Please enter a valid email." #~ msgid "Please keep this screen lit up (black screen = not recording)" #~ msgstr "Please keep this screen lit up (black screen = not recording)" -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Please login to continue." @@ -3011,7 +3271,7 @@ msgstr "Please login to continue." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Please provide a concise summary of the following provided in the context." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -3025,11 +3285,11 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Please select a language for your report" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Please select a language for your updated report" @@ -3037,7 +3297,7 @@ msgstr "Please select a language for your updated report" #~ msgid "Please select at least one source" #~ msgstr "Please select at least one source" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Please select conversations from the sidebar to proceed" @@ -3057,21 +3317,21 @@ msgstr "Please select conversations from the sidebar to proceed" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Please wait {timeStr} before requesting another reply." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Please wait while we generate your report. You will automatically be redirected to the report page." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Please wait while we process your request. You requested to create the library on {0}" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Please wait while we update your report. You will automatically be redirected to the report page." @@ -3079,20 +3339,20 @@ msgstr "Please wait while we update your report. You will automatically be redir msgid "Please wait while we verify your email address." msgstr "Please wait while we verify your email address." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Portal Content" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Portal Editor" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Powered by" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Preparing your conversations... This may take a moment." @@ -3100,11 +3360,15 @@ msgstr "Preparing your conversations... This may take a moment." msgid "Preparing your experience" msgstr "Preparing your experience" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Preview: The quick brown fox jumps over the lazy dog." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" msgstr "Print / Save PDF" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Print this report" @@ -3112,12 +3376,12 @@ msgstr "Print this report" msgid "Privacy Statements" msgstr "Privacy Statements" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Proceed" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Proceed" @@ -3130,7 +3394,7 @@ msgstr "Proceed" #~ msgstr "Processing" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "Processing <0>{totalCount, plural, one {# conversation} other {# conversations}} and adding them to your chat" @@ -3146,12 +3410,12 @@ msgstr "Processing <0>{totalCount, plural, one {# conversation} other {# convers #~ msgid "Processing Transcript" #~ msgstr "Processing Transcript" -#: src/components/report/UpdateReportModalButton.tsx:73 -#: src/components/report/CreateReportForm.tsx:51 +#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/CreateReportForm.tsx:52 msgid "Processing your report..." msgstr "Processing your report..." -#: src/components/conversation/RetranscribeConversation.tsx:127 +#: src/components/conversation/RetranscribeConversation.tsx:143 msgid "Processing your retranscription request..." msgstr "Processing your retranscription request..." @@ -3159,19 +3423,23 @@ msgstr "Processing your retranscription request..." msgid "Project Created" msgstr "Project Created" +#: src/components/conversation/RetranscribeConversation.tsx:172 +msgid "Project default: enabled. This will replace personally identifiable information with ." +msgstr "Project default: enabled. This will replace personally identifiable information with ." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Project Library | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Project name" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" msgstr "Project name and ID" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "Project name must be at least 4 characters long" @@ -3183,7 +3451,7 @@ msgstr "Project not found" #~ msgid "Project Overview" #~ msgstr "Project Overview" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Project Overview | Dembrane" @@ -3191,19 +3459,19 @@ msgstr "Project Overview | Dembrane" #~ msgid "Project Overview and Edit" #~ msgstr "Project Overview and Edit" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Project Settings" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Projects" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Projects | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Projects Home" @@ -3215,15 +3483,15 @@ msgstr "Provide an overview of the main topics and recurring themes" #~ msgid "Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information." #~ msgstr "Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information." -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Publish" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Published" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Pull out the most impactful quotes from this session" @@ -3233,12 +3501,16 @@ msgstr "Pull out the most impactful quotes from this session" #~ msgid "Quotes" #~ msgstr "Quotes" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Re-use settings from an existing webhook" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Read aloud" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -3246,7 +3518,7 @@ msgstr "Ready to Begin?" #~ msgid "Ready to Begin?" #~ msgstr "Ready to Begin?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." msgstr "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." @@ -3255,12 +3527,12 @@ msgid "Recommended apps" msgstr "Recommended apps" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Reconnect" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Record" @@ -3268,17 +3540,17 @@ msgstr "Record" #~ msgid "Record" #~ msgstr "Record" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Record another conversation" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Recording interrupted" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Recording Paused" @@ -3301,12 +3573,7 @@ msgstr "Recurring Themes" msgid "References" msgstr "References" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Refine" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Refresh" @@ -3318,24 +3585,24 @@ msgstr "Refresh audit logs" #~ msgid "Regenerate Library" #~ msgstr "Regenerate Library" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Regenerate Summary" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Regenerating the artefact" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Regenerating the outcome" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Regenerating the summary. Please wait..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "Register | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "Register as a new user" @@ -3344,7 +3611,7 @@ msgstr "Register as a new user" #~ msgstr "Relevance" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Reload Page" @@ -3354,7 +3621,7 @@ msgid "participant.button.reload" msgstr "Reload Page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Reload Page" @@ -3363,20 +3630,24 @@ msgstr "Reload Page" #~ msgid "Reload Page" #~ msgstr "Reload Page" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Remove" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "Remove Email" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Remove file" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Remove from this chat" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Rename" @@ -3384,17 +3655,17 @@ msgstr "Rename" #~ msgid "Rename" #~ msgstr "Rename" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Reply Prompt" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Report" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Report an issue" @@ -3403,11 +3674,11 @@ msgstr "Report an issue" msgid "Report Created - {0}" msgstr "Report Created - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Report Notifications" @@ -3425,16 +3696,16 @@ msgstr "Request Access" msgid "Request Access" msgstr "Request Access" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Request Password Reset" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Request Password Reset | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Requesting microphone access to detect available devices..." @@ -3442,6 +3713,10 @@ msgstr "Requesting microphone access to detect available devices..." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Requesting microphone access to detect available devices..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Requires \"Ask for Email?\" to be enabled" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" msgstr "Reset" @@ -3459,8 +3734,8 @@ msgstr "Reset Password" msgid "Reset Password | Dembrane" msgstr "Reset Password | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Reset to default" @@ -3477,27 +3752,27 @@ msgstr "Resume" #~ msgid "Resume" #~ msgstr "Resume" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Retranscribe" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Retranscribe conversation" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Retranscribe Conversation" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "Retranscription started. New conversation will be available soon." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Retry" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Retry Upload" @@ -3505,7 +3780,7 @@ msgstr "Retry Upload" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Review files before uploading" @@ -3514,11 +3789,11 @@ msgid "Review processing status for every conversation collected in this project msgstr "Review processing status for every conversation collected in this project." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "Revise" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" @@ -3526,12 +3801,12 @@ msgstr "Revision #{revisionNumber}" msgid "Right-click to highlight" msgstr "Right-click to highlight" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Rows per page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "Save" @@ -3539,7 +3814,7 @@ msgstr "Save" #~ msgid "Save" #~ msgstr "Save" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" msgstr "Save Changes" @@ -3561,11 +3836,11 @@ msgid "Scroll to bottom" msgstr "Scroll to bottom" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Search" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Search" @@ -3573,20 +3848,20 @@ msgstr "Search" msgid "Search conversations" msgstr "Search conversations" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Search projects" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Search Projects" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Search projects..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Search tags" @@ -3595,10 +3870,14 @@ msgid "Search templates..." msgstr "Search templates..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Search text:" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Search webhooks..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" @@ -3607,7 +3886,7 @@ msgstr "Searched through the most relevant sources" msgid "Searching through the most relevant sources" msgstr "Searching through the most relevant sources" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" msgstr "Secret" @@ -3619,7 +3898,7 @@ msgstr "Secret copied" #~ msgid "See conversation status details" #~ msgstr "See conversation status details" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "See you soon" @@ -3627,66 +3906,70 @@ msgstr "See you soon" #~ msgid "Segments" #~ msgstr "Segments" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Select a microphone" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Select a webhook to clone" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Select all" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Select all ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Select All Results" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" msgstr "Select at least one event" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Select Audio Files to Upload" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Select conversations and find exact quotes" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Select conversations from sidebar" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Select Project" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Select tags" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Select the instructions that will be shown to participants when they start a conversation" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Select the type of feedback or engagement you want to encourage." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Select tutorial" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Select which topics participants can use for \"Make it concrete\"." +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Select which topics participants can use for verification." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Select your microphone:" @@ -3695,29 +3978,29 @@ msgstr "Select your microphone:" #~ msgstr "Select your microphone:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Selected Files ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Selected microphone:" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Selection too large" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Selection too large. Some conversations weren't added." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Send" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" msgstr "Send Slack/Teams notifications when new conversations are completed" @@ -3725,36 +4008,36 @@ msgstr "Send Slack/Teams notifications when new conversations are completed" #~ msgid "Sentiment" #~ msgstr "Sentiment" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Session Name" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Setting up your first project" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Settings" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Settings" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Settings | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Share" +#~ msgid "Share" +#~ msgstr "Share" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Share this report" @@ -3762,18 +4045,22 @@ msgstr "Share this report" msgid "Share your details here" msgstr "Share your details here" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Share your voice" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Share your voice by scanning the QR code below." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Shortest First" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Show" + #: src/components/conversation/ConversationAccordion.tsx:555 #~ msgid "Show {0}" #~ msgstr "Show {0}" @@ -3782,7 +4069,7 @@ msgstr "Shortest First" #~ msgid "Show all" #~ msgstr "Show all" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Show audio player" @@ -3798,11 +4085,11 @@ msgstr "Show data" msgid "Show IP addresses" msgstr "Show IP addresses" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Show less" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Show more" @@ -3815,7 +4102,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Show timeline in report (request feature)" @@ -3823,7 +4110,7 @@ msgstr "Show timeline in report (request feature)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Show timestamps (experimental)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "Showing {displayFrom}–{displayTo} of {totalItems} entries" @@ -3844,12 +4131,12 @@ msgstr "Skip" #~ msgid "Skip data privacy slide (Host manages consent)" #~ msgstr "Skip data privacy slide (Host manages consent)" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Skip data privacy slide (Host manages legal base)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Skipped because the selection was too large." @@ -3857,23 +4144,23 @@ msgstr "Skipped because the selection was too large." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Some files were already selected and won't be added twice." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Some may be skipped (no transcript or selection too large)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Something went wrong" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Something went wrong" @@ -3894,16 +4181,16 @@ msgstr "Something went wrong while generating the secret." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Something went wrong while uploading the file: {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues." +msgid "participant.explore.generic.error.message" +msgstr "Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." @@ -3912,8 +4199,8 @@ msgstr "Something went wrong. Please try again." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "Sorry, we cannot process this request due to an LLM provider's content policy." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Sort" @@ -3926,7 +4213,7 @@ msgstr "Source {0}" #~ msgid "Sources:" #~ msgstr "Sources:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Spanish" @@ -3934,21 +4221,25 @@ msgstr "Spanish" #~ msgid "Speaker" #~ msgstr "Speaker" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Specific Context" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Specific Details" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Specific Details - Selected conversations" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Start fresh" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Start New Conversation" @@ -3974,12 +4265,12 @@ msgstr "Start over" msgid "Status" msgstr "Status" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Stop" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Stop" @@ -3987,12 +4278,12 @@ msgstr "Stop" msgid "Strategic Planning" msgstr "Strategic Planning" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Submit" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Submit" @@ -4001,7 +4292,7 @@ msgstr "Submit" #~ msgid "Submitted via text input" #~ msgstr "Submitted via text input" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Success" @@ -4014,23 +4305,23 @@ msgstr "Suggested:" msgid "Summarize" msgstr "Summarize" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Summarize key insights from my interviews" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Summarize this interview into a shareable article" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Summary" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" msgstr "Summary (when available)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Summary generated successfully." @@ -4038,15 +4329,15 @@ msgstr "Summary generated successfully." #~ msgid "Summary not available yet" #~ msgstr "Summary not available yet" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Summary regenerated successfully." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "Summary will be available once the conversation is transcribed" -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -4059,11 +4350,11 @@ msgstr "Switch to text input" msgid "System" msgstr "System" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Tags" @@ -4080,7 +4371,7 @@ msgstr "Take some time to create an outcome that makes your contribution concret msgid "participant.refine.make.concrete.description" msgstr "Take some time to create an outcome that makes your contribution concrete." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Template applied" @@ -4088,15 +4379,15 @@ msgstr "Template applied" msgid "Templates" msgstr "Templates" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" msgstr "Test Webhook" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Text" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "Thank you for participating!" @@ -4104,15 +4395,15 @@ msgstr "Thank you for participating!" #~ msgid "Thank You Page" #~ msgstr "Thank You Page" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Thank You Page Content" -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" msgstr "Thank you!" -#: src/routes/auth/Login.tsx:141 +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "That code didn't work. Try again with a fresh code from your authenticator app." @@ -4124,7 +4415,7 @@ msgid "The code didn't work, please try again." msgstr "The code didn't work, please try again." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "The conversation could not be loaded. Please try again or contact support." @@ -4138,7 +4429,7 @@ msgstr "The conversation could not be loaded. Please try again or contact suppor #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "The conversation could not be loaded. Please try again or contact support." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." msgstr "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." @@ -4154,11 +4445,11 @@ msgstr "The following conversations were automatically added to the context" #~ msgid "the project library." #~ msgstr "the project library." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "The summary is being generated. Please wait for it to be available." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "The summary is being regenerated. Please wait for it to be available." @@ -4174,23 +4465,27 @@ msgstr "The summary is being regenerated. Please wait for it to be available." #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "The transcript for this conversation is being processed. Please check back later." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Theme" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "There was an error cloning your project. Please try again or contact support." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "There was an error creating your report. Please try again or contact support." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "There was an error updating your report. Please try again or contact support." @@ -4207,7 +4502,7 @@ msgstr "There was an error verifying your email. Please try again." #~ msgstr "These are your default view templates. Once you create your library these will be your first two views." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "These conversations were excluded due to missing transcripts." @@ -4215,7 +4510,7 @@ msgstr "These conversations were excluded due to missing transcripts." msgid "These default view templates will be generated when you create your first library." msgstr "These default view templates will be generated when you create your first library." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Thinking..." @@ -4237,7 +4532,7 @@ msgstr "This conversation is a copy of" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "This conversation is still being processed. It will be available for analysis and chat shortly. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "This email is already in the list." @@ -4246,15 +4541,15 @@ msgstr "This email is already in the list." #~ msgstr "This email is already subscribed to notifications." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "This feature will be available in {remainingTime} seconds." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." msgstr "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." @@ -4283,15 +4578,15 @@ msgstr "This is your project library. Create views to analyse your entire projec #~ msgid "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." #~ msgstr "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "This language will be used for the Participant's Portal." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "This page is shown after the participant has completed the conversation." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "This page is shown to participants when they start a conversation after they successfully complete the tutorial." @@ -4303,16 +4598,16 @@ msgstr "This page is shown to participants when they start a conversation after #~ msgid "This project library was generated on {0}." #~ msgstr "This project library was generated on {0}." -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "This report is not yet available. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" @@ -4320,7 +4615,7 @@ msgstr "This report was opened by {0} people" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "This title is shown to participants when they start a conversation" @@ -4328,11 +4623,11 @@ msgstr "This title is shown to participants when they start a conversation" msgid "This will clear your current input. Are you sure?" msgstr "This will clear your current input. Are you sure?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." @@ -4342,7 +4637,7 @@ msgid "add.tag.filter.modal.info" msgstr "This will filter the conversation list to show conversations with this tag." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "This will just take a few moments" @@ -4351,7 +4646,7 @@ msgstr "This will just take a few moments" msgid "participant.concrete.loading.artefact.description" msgstr "This will just take a moment" -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "This will replace personally identifiable information with ." @@ -4363,39 +4658,43 @@ msgstr "This will replace personally identifiable information with ." msgid "Timestamp" msgstr "Timestamp" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:592 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:815 msgid "Timestamps and duration" msgstr "Timestamps and duration" -#: src/components/participant/ParticipantBody.tsx:143 +#: src/components/participant/ParticipantBody.tsx:144 msgid "Tip" msgstr "Tip" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:771 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:997 msgid "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." msgstr "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." -#: src/components/project/ProjectBasicEdit.tsx:80 -#~ msgid "Title" -#~ msgstr "Title" +#: src/components/conversation/ConversationEdit.tsx:319 +msgid "Title" +msgstr "Title" -#: src/components/conversation/ConversationEdit.tsx:200 +#: src/components/conversation/ConversationEdit.tsx:381 msgid "To assign a new tag, please create it first in the project overview." msgstr "To assign a new tag, please create it first in the project overview." -#: src/components/report/CreateReportForm.tsx:91 +#: src/components/report/CreateReportForm.tsx:92 msgid "To generate a report, please start by adding conversations in your project" msgstr "To generate a report, please start by adding conversations in your project" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:537 +#: src/components/conversation/SelectAllConfirmationModal.tsx:565 msgid "select.all.modal.context.limit" msgstr "Too large" -#: src/components/conversation/SelectAllConfirmationModal.tsx:128 +#: src/components/conversation/SelectAllConfirmationModal.tsx:129 msgid "Too long" msgstr "Too long" +#: src/components/conversation/ConversationEdit.tsx:340 +msgid "Topic-based title describing what was discussed" +msgstr "Topic-based title describing what was discussed" + #: src/components/view/CreateViewForm.tsx:123 msgid "Topics" msgstr "Topics" @@ -4408,12 +4707,12 @@ msgstr "Topics" msgid "Transcribing..." msgstr "Transcribing..." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:83 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:84 #: src/components/layout/ProjectConversationLayout.tsx:47 msgid "Transcript" msgstr "Transcript" -#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:28 msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" @@ -4511,7 +4810,7 @@ msgstr "" "\n" "Note: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:624 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:850 msgid "Trigger automated workflows in tools like Zapier, Make, or n8n" msgstr "Trigger automated workflows in tools like Zapier, Make, or n8n" @@ -4519,7 +4818,7 @@ msgstr "Trigger automated workflows in tools like Zapier, Make, or n8n" msgid "Try Again" msgstr "Try Again" -#: src/components/chat/ChatModeSelector.tsx:163 +#: src/components/chat/ChatModeSelector.tsx:162 msgid "Try asking" msgstr "Try asking" @@ -4543,32 +4842,36 @@ msgstr "Two-factor authentication enabled" msgid "Type" msgstr "Type" -#: src/routes/project/chat/ProjectChatRoute.tsx:726 +#: src/routes/project/chat/ProjectChatRoute.tsx:742 msgid "Type a message..." msgstr "Type a message..." -#: src/components/participant/ParticipantConversationText.tsx:207 +#: src/components/participant/ParticipantConversationText.tsx:214 msgid "Type your response here" msgstr "Type your response here" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:19 -msgid "participant.concrete.artefact.error.title" -msgstr "Unable to Load Artefact" - #: src/components/settings/AuditLogsCard.tsx:511 msgid "Unable to load audit logs." msgstr "Unable to load audit logs." +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +msgid "participant.outcome.error.title" +msgstr "Unable to Load Outcome" + #: src/components/participant/verify/VerifyArtefact.tsx:89 -msgid "Unable to load the generated artefact. Please try again." -msgstr "Unable to load the generated artefact. Please try again." +#~ msgid "Unable to load the generated artefact. Please try again." +#~ msgstr "Unable to load the generated artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:90 +msgid "Unable to load the generated outcome. Please try again." +msgstr "Unable to load the generated outcome. Please try again." #: src/components/conversation/ConversationChunkAudioTranscript.tsx:69 msgid "Unable to process this chunk" msgstr "Unable to process this chunk" -#: src/routes/project/chat/ProjectChatRoute.tsx:431 +#: src/routes/project/chat/ProjectChatRoute.tsx:433 msgid "Undo" msgstr "Undo" @@ -4576,15 +4879,15 @@ msgstr "Undo" msgid "Unknown" msgstr "Unknown" -#: src/components/conversation/SelectAllConfirmationModal.tsx:132 +#: src/components/conversation/SelectAllConfirmationModal.tsx:133 msgid "Unknown reason" msgstr "Unknown reason" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:39 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:41 msgid "unread announcement" msgstr "unread announcement" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:40 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:42 msgid "unread announcements" msgstr "unread announcements" @@ -4600,20 +4903,20 @@ msgstr "Unsubscribe" msgid "Untitled Conversation" msgstr "Untitled Conversation" -#: src/components/report/UpdateReportModalButton.tsx:66 +#: src/components/report/UpdateReportModalButton.tsx:67 msgid "Update" msgstr "Update" -#: src/components/report/UpdateReportModalButton.tsx:70 -#: src/components/report/UpdateReportModalButton.tsx:122 +#: src/components/report/UpdateReportModalButton.tsx:76 +#: src/components/report/UpdateReportModalButton.tsx:133 msgid "Update Report" msgstr "Update Report" -#: src/components/report/UpdateReportModalButton.tsx:64 +#: src/components/report/UpdateReportModalButton.tsx:65 msgid "Update the report to include the latest data" msgstr "Update the report to include the latest data" -#: src/components/report/UpdateReportModalButton.tsx:91 +#: src/components/report/UpdateReportModalButton.tsx:100 msgid "Update your report to include the latest changes in your project. The link to share the report would remain the same." msgstr "Update your report to include the latest changes in your project. The link to share the report would remain the same." @@ -4625,29 +4928,34 @@ msgstr "Upgrade" msgid "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." msgstr "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." +#: src/components/settings/WhitelabelLogoCard.tsx:152 #: src/components/project/ProjectUploadSection.tsx:15 -#: src/components/dropzone/UploadConversationDropzone.tsx:504 -#: src/components/conversation/ConversationAccordion.tsx:409 +#: src/components/dropzone/UploadConversationDropzone.tsx:506 +#: src/components/conversation/ConversationAccordion.tsx:414 msgid "Upload" msgstr "Upload" +#: src/components/settings/WhitelabelLogoCard.tsx:100 +msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." + #: src/components/dropzone/UploadConversationDropzone.tsx:504 #~ msgid "Upload Audio" #~ msgstr "Upload Audio" -#: src/components/dropzone/UploadConversationDropzone.tsx:517 +#: src/components/dropzone/UploadConversationDropzone.tsx:519 msgid "Upload Complete" msgstr "Upload Complete" -#: src/components/dropzone/UploadConversationDropzone.tsx:498 +#: src/components/dropzone/UploadConversationDropzone.tsx:499 msgid "Upload conversations" msgstr "Upload conversations" -#: src/components/dropzone/UploadConversationDropzone.tsx:334 +#: src/components/dropzone/UploadConversationDropzone.tsx:335 msgid "Upload failed. Please try again." msgstr "Upload failed. Please try again." -#: src/components/dropzone/UploadConversationDropzone.tsx:694 +#: src/components/dropzone/UploadConversationDropzone.tsx:725 msgid "Upload Files" msgstr "Upload Files" @@ -4663,25 +4971,25 @@ msgstr "Upload Files" #~ msgid "Uploaded" #~ msgstr "Uploaded" -#: src/components/dropzone/UploadConversationDropzone.tsx:518 +#: src/components/dropzone/UploadConversationDropzone.tsx:520 msgid "Uploading Audio Files..." msgstr "Uploading Audio Files..." #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:60 +#: src/components/participant/StopRecordingConfirmationModal.tsx:62 msgid "participant.modal.uploading" msgstr "Uploading audio..." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:550 +#: src/components/participant/ParticipantConversationAudio.tsx:556 msgid "participant.modal.interruption.uploading" msgstr "Uploading audio..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:211 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:406 msgid "URL is required" msgstr "URL is required" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:208 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:403 msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" @@ -4689,16 +4997,20 @@ msgstr "URL must start with http:// or https://" #~ msgid "Use experimental features" #~ msgstr "Use experimental features" -#: src/components/conversation/RetranscribeConversation.tsx:152 +#: src/components/conversation/RetranscribeConversation.tsx:169 msgid "Use PII Redaction" msgstr "Use PII Redaction" -#: src/routes/project/chat/ProjectChatRoute.tsx:748 -#: src/routes/project/chat/ProjectChatRoute.tsx:778 +#: src/routes/project/chat/ProjectChatRoute.tsx:765 +#: src/routes/project/chat/ProjectChatRoute.tsx:795 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:820 +#: src/components/settings/WhitelabelLogoCard.tsx:134 +msgid "Using default Dembrane logo" +msgstr "Using default Dembrane logo" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" msgstr "Using webhooks? We'd love to hear from you" @@ -4711,17 +5023,17 @@ msgstr "Using webhooks? We'd love to hear from you" #~ msgstr "verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:111 +#: src/components/conversation/SelectAllConfirmationModal.tsx:112 msgid "select.all.modal.verified" msgstr "Verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:436 +#: src/components/conversation/SelectAllConfirmationModal.tsx:444 msgid "select.all.modal.loading.verified" msgstr "Verified" #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:1333 +#: src/components/conversation/ConversationAccordion.tsx:1347 msgid "conversation.filters.verified.text" msgstr "Verified" @@ -4733,11 +5045,21 @@ msgstr "Verified" #~ msgid "Verified Artefacts" #~ msgstr "Verified Artefacts" -#: src/components/conversation/ConversationAccordion.tsx:579 +#: src/components/conversation/ConversationAccordion.tsx:569 msgid "verified artifacts" msgstr "verified artifacts" -#: src/routes/auth/Login.tsx:277 +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verify" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" +msgstr "Dembrane Verify" + +#: src/routes/auth/Login.tsx:288 msgid "Verify code" msgstr "Verify code" @@ -4760,11 +5082,11 @@ msgstr "View" msgid "View Details" msgstr "View Details" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:601 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:827 msgid "View example payload" msgstr "View example payload" -#: src/components/participant/ParticipantBody.tsx:229 +#: src/components/participant/ParticipantBody.tsx:242 msgid "View your responses" msgstr "View your responses" @@ -4789,7 +5111,7 @@ msgstr "Want to add a template to \"Dembrane\"?" #~ msgstr "Warning: You have added {0} key terms. Only the first {ASSEMBLYAI_MAX_HOTWORDS} will be used by the transcription engine." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:366 +#: src/components/participant/MicrophoneTest.tsx:389 msgid "participant.alert.microphone.access.issue" msgstr "We cannot hear you. Please try changing your microphone or get a little closer to the device." @@ -4813,7 +5135,7 @@ msgstr "We couldn’t enable two-factor authentication. Double-check your code a #~ msgid "We have sent you an email with next steps. If you don't see it, check your spam folder." #~ msgstr "We have sent you an email with next steps. If you don't see it, check your spam folder." -#: src/routes/auth/CheckYourEmail.tsx:14 +#: src/routes/auth/CheckYourEmail.tsx:15 msgid "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" msgstr "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" @@ -4823,15 +5145,15 @@ msgstr "We have sent you an email with next steps. If you don't see it, check yo #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:450 -msgid "participant.modal.refine.info.reason" -msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." +msgid "participant.modal.echo.info.reason" +msgstr "We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions." -#: src/routes/participant/ParticipantPostConversation.tsx:252 +#: src/routes/participant/ParticipantPostConversation.tsx:263 msgid "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." msgstr "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:291 +#: src/components/participant/MicrophoneTest.tsx:292 msgid "participant.test.microphone.description" msgstr "We'll test your microphone to ensure the best experience for everyone in the session." @@ -4843,27 +5165,27 @@ msgstr "We'll test your microphone to ensure the best experience for everyone in msgid "We’re picking up some silence. Try speaking up so your voice comes through clearly." msgstr "We’re picking up some silence. Try speaking up so your voice comes through clearly." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:745 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:971 msgid "Webhook" msgstr "Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:216 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:411 msgid "Webhook URL" msgstr "Webhook URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:701 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:927 msgid "Webhooks" msgstr "Webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:545 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:742 msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/components/participant/ParticipantBody.tsx:124 +#: src/components/participant/ParticipantBody.tsx:125 msgid "Welcome" msgstr "Welcome" -#: src/routes/auth/Login.tsx:108 +#: src/routes/auth/Login.tsx:109 msgid "Welcome back" msgstr "Welcome back" @@ -4871,7 +5193,7 @@ msgstr "Welcome back" #~ msgid "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." #~ msgstr "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:529 +#: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." msgstr "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." @@ -4883,52 +5205,72 @@ msgstr "Welcome to Dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:528 +#: src/routes/project/chat/ProjectChatRoute.tsx:535 msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." msgstr "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." -#: src/components/report/CreateReportForm.tsx:79 +#: src/components/report/CreateReportForm.tsx:80 msgid "Welcome to Reports!" msgstr "Welcome to Reports!" -#: src/routes/project/ProjectsHome.tsx:152 +#: src/routes/project/ProjectsHome.tsx:154 msgid "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" msgstr "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" -#: src/routes/auth/Login.tsx:191 +#: src/routes/auth/Login.tsx:192 msgid "Welcome!" msgstr "Welcome!" -#: src/components/chat/ChatModeSelector.tsx:46 +#: src/components/chat/ChatModeSelector.tsx:47 msgid "What are the main themes across all conversations?" msgstr "What are the main themes across all conversations?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:538 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 msgid "What are webhooks? (2 min read)" msgstr "What are webhooks? (2 min read)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:576 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:799 msgid "What data is sent?" msgstr "What data is sent?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:196 +#: src/components/participant/verify/VerifySelection.tsx:201 msgid "participant.concrete.selection.title" msgstr "What do you want to make concrete?" -#: src/components/chat/ChatModeSelector.tsx:48 +#: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" msgstr "What patterns emerge from the data?" -#: src/components/chat/ChatModeSelector.tsx:54 +#: src/components/chat/ChatModeSelector.tsx:55 msgid "What were the key moments in this conversation?" msgstr "What were the key moments in this conversation?" -#: src/components/chat/ChatModeSelector.tsx:242 +#: src/components/chat/ChatModeSelector.tsx:250 msgid "What would you like to explore?" msgstr "What would you like to explore?" -#: src/components/report/CreateReportForm.tsx:120 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:778 +msgid "When a participant opens the portal, enters their details, and begins a conversation" +msgstr "When a participant opens the portal, enters their details, and begins a conversation" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:785 +msgid "When all audio has been converted to text and the full transcript is available" +msgstr "When all audio has been converted to text and the full transcript is available" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:773 +msgid "When are webhooks triggered?" +msgstr "When are webhooks triggered?" + +#: src/components/project/ProjectPortalEditor.tsx:1178 +msgid "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." +msgstr "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:792 +msgid "When the summary is ready (includes both transcript and summary)" +msgstr "When the summary is ready (includes both transcript and summary)" + +#: src/components/report/CreateReportForm.tsx:121 msgid "will be included in your report" msgstr "will be included in your report" @@ -4938,7 +5280,7 @@ msgid "add.tag.filter.modal.description" msgstr "Would you like to add this tag to your current filters?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:177 +#: src/components/participant/ParticipantConversationText.tsx:179 msgid "participant.button.finish.yes.text.mode" msgstr "Yes" @@ -4951,7 +5293,7 @@ msgid "You are already unsubscribed or your link is invalid." msgstr "You are already unsubscribed or your link is invalid." #. placeholder {0}: MAX_FILES - selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:399 +#: src/components/dropzone/UploadConversationDropzone.tsx:400 msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." msgstr "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." @@ -4960,16 +5302,16 @@ msgstr "You can only upload up to {MAX_FILES} files at a time. Only the first {0 #~ msgstr "You can still use the Ask feature to chat with any conversation" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:247 +#: src/components/conversation/SelectAllConfirmationModal.tsx:249 msgid "select.all.modal.already.added" msgstr "You have already added <0>{existingContextCount, plural, one {# conversation} other {# conversations}} to this chat." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "You have already added all the conversations related to this" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "You have changed the mic. Doing this will save your audio till this point and restart your recording." @@ -4981,7 +5323,7 @@ msgstr "You have changed the mic. Doing this will save your audio till this poin msgid "You have successfully unsubscribed." msgstr "You have successfully unsubscribed." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "You may also choose to record another conversation." @@ -4989,21 +5331,21 @@ msgstr "You may also choose to record another conversation." #~ msgid "You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts." #~ msgstr "You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "You must login with the same provider you used to sign up. If you face any issues, please contact support." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "You'll soon get {objectLabel} to make them concrete." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "Your approval helps us understand what you really think!" @@ -5023,11 +5365,11 @@ msgstr "Your inputs will be saved automatically." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Your library is empty. Create a library to see your first insights." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Your response has been recorded. You may now close this tab." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Your responses" @@ -5036,7 +5378,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Your view has been created. Please wait as we process and analyse the data." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Your Views" diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 7ad1a049..4a02b1de 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"iH8pgl\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"ZQKLI1\":[\"Danger Zone\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Dutch\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"329BBO\":[\"Enable two-factor authentication\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Options\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"participant.button.refine\":[\"Refine\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default Dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verify\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index 76857a6c..53ebe792 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -40,17 +40,17 @@ msgid "Something went wrong" msgstr "Algo salió mal" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "Estamos preparando tu espacio de trabajo." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Preparando tu dashboard" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Bienvenido de nuevo" @@ -80,11 +80,81 @@ msgstr "Bienvenido de nuevo" #~ msgstr "Guardamos tu grabación hasta <0>{formattedDuration} pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "profundizar" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "concretar" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Refinar\" Disponible pronto" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Función disponible pronto" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Profundizar" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Hacerlo concreto" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Hacerlo concreto" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Refinar" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Regenerando el artefacto" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Selecciona qué temas pueden usar los participantes para verificación." + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Algo salió mal. Por favor, inténtalo de nuevo." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "No se pudo cargar el artefacto" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr "La biblioteca tardará {duration}" -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr "Enviar" @@ -96,41 +166,41 @@ msgstr "Desuscribirse de Notificaciones" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "profundizar" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" disponible pronto" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "concretar" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Explorar\" disponible pronto" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Refinar\" Disponible pronto" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Verificar\" disponible pronto" #~ msgid "(for enhanced audio processing)" #~ msgstr "(para procesamiento de audio mejorado)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# etiqueta} other {# etiquetas}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Etiqueta:} other {Etiquetas:}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -140,7 +210,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} añadidas" @@ -155,11 +225,11 @@ msgstr "{0} Conversaciones • Editado {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} no añadidas" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} seleccionadas" @@ -170,14 +240,14 @@ msgstr "{conversationCount} seleccionadas" #~ msgstr "{diffInHours} horas atrás" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Actualmente, # conversación está lista para ser analizada.} other {Actualmente, # conversaciones están listas para ser analizadas.}}" #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} minutos y {seconds} segundos" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} leyendo ahora" @@ -185,7 +255,7 @@ msgstr "{readingNow} leyendo ahora" #~ msgstr "{seconds} segundos" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{0} aún en proceso." @@ -207,21 +277,21 @@ msgstr "+{hiddenCount} conversaciones" msgid "0 Aspects" msgstr "0 Aspectos" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" -msgstr "" +msgstr "1. Proporcionas una URL donde quieres recibir notificaciones" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" -msgstr "" +msgstr "2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -msgstr "" +msgstr "3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" -msgstr "" +msgstr "Un nombre amigable para identificar este webhook" #: src/components/settings/TwoFactorSettingsCard.tsx:176 msgid "Account password" @@ -235,17 +305,17 @@ msgstr "Acción de" msgid "Action On" msgstr "Acción sobre" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Acciones" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Filtros activos" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Añadir" @@ -253,16 +323,16 @@ msgstr "Añadir" msgid "Add additional context (Optional)" msgstr "Añadir contexto adicional (Opcional)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Añade todos los que correspondan" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Añadir conversaciones al contexto" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción." @@ -270,7 +340,7 @@ msgstr "Añade términos clave o nombres propios para mejorar la calidad y preci msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Añadir Etiqueta" @@ -279,7 +349,7 @@ msgstr "Añadir Etiqueta" msgid "add.tag.filter.modal.title" msgstr "Añadir etiqueta a los filtros" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Añadir Etiquetas" @@ -288,62 +358,66 @@ msgstr "Añadir Etiquetas" msgid "add.tag.filter.modal.add" msgstr "Añadir a los filtros" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Añadir a este chat" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" -msgstr "" +msgstr "Añadir Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" -msgstr "" +msgstr "Añadir tu primer Webhook" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Añadidas" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "E-mails añadidos" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "Añadiendo <0>{totalCount, plural, one {# conversación} other {# conversaciones}} al chat" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "Añadiendo <0>{totalCount, plural, one {# conversación} other {# conversaciones}} con los siguientes filtros:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "Añadiendo <0>{totalCount, plural, one {# conversación más} other {# conversaciones más}}" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "Añadiendo <0>{totalCount, plural, one {# conversación más} other {# conversaciones más}} con los siguientes filtros:" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Añadiendo Contexto:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Añadiendo conversaciones" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Ajustar el tamaño de la fuente base para la interfaz" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" -msgstr "" +msgstr "Avanzado" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Avanzado (Consejos y best practices)" @@ -351,7 +425,7 @@ msgstr "Avanzado (Consejos y best practices)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Avanzado (Consejos y trucos)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Configuración Avanzada" @@ -370,14 +444,14 @@ msgstr "Todas las conversaciones" #~ msgid "All conversations ready" #~ msgstr "Todas las conversaciones están listas" -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "Todas las archivos se han subido correctamente." #~ msgid "All Insights" #~ msgstr "Todos los Insights" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Permitir a los participantes usar el enlace para iniciar nuevas conversaciones" @@ -385,28 +459,28 @@ msgstr "Permitir a los participantes usar el enlace para iniciar nuevas conversa msgid "Almost there" msgstr "Casi listo" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Ya añadido a este chat" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Ya en el contexto" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "Se enviará una notificación por correo electrónico a {0} participante{1}. ¿Quieres continuar?" #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "Se enviará una notificación por correo electrónico a {0} participante{1}. ¿Quieres continuar?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "Ocurrió un error." @@ -444,37 +518,41 @@ msgstr "" "Nota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar." #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" -msgstr "" +msgstr "anuncios" #: src/components/announcement/AnnouncementDrawerHeader.tsx:23 #~ msgid "Announcements" #~ msgstr "Anuncios" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Anonimizar transcripciones" + #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "aprobar" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Aprobado" #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -msgstr "" +msgstr "¿Estás seguro de que quieres eliminar el webhook \"{0}\"? Esta acción no se puede deshacer." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer." #~ msgid "Are you sure you want to delete this project?" #~ msgstr "¿Estás seguro de que quieres eliminar este proyecto?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer." @@ -484,12 +562,12 @@ msgstr "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no s #~ msgid "Are you sure you want to delete this tag?" #~ msgstr "¿Estás seguro de que quieres eliminar esta etiqueta?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "¿Estás seguro de que quieres terminar la conversación?" @@ -500,45 +578,49 @@ msgstr "¿Estás seguro de que quieres terminar la conversación?" msgid "Are you sure you want to generate the library? This will take a while and overwrite your current views and insights." msgstr "¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual." #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "¡Artefacto aprobado exitosamente!" +#~ msgid "Artefact approved successfully!" +#~ msgstr "¡Artefacto aprobado exitosamente!" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "¡Artefacto recargado exitosamente!" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "¡Artefacto recargado exitosamente!" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "¡Artefacto revisado exitosamente!" +#~ msgid "Artefact revised successfully!" +#~ msgstr "¡Artefacto revisado exitosamente!" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "¡Artefacto actualizado exitosamente!" +#~ msgid "Artefact updated successfully!" +#~ msgstr "¡Artefacto actualizado exitosamente!" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "artefactos" +#~ msgid "artefacts" +#~ msgstr "artefactos" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefactos" +#~ msgid "Artefacts" +#~ msgstr "Artefactos" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Preguntar" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "¿Preguntar por el email?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "¿Preguntar por el nombre?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Pedir a los participantes que proporcionen su nombre cuando inicien una conversación" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Pedir a los participantes que proporcionen su nombre cuando inicien una conversación" #: src/routes/project/library/ProjectLibraryAspect.tsx:51 msgid "Aspect" @@ -557,11 +639,15 @@ msgstr "Aspectos" #~ msgstr "At least one topic must be selected to enable Dembrane Verify" #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "Tienes que seleccionar al menos un tema para activar Hacerlo concreto" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "Tienes que seleccionar al menos un tema para activar Hacerlo concreto" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "Tienes que seleccionar al menos un tema para activar Verificar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar." @@ -589,83 +675,103 @@ msgstr "Registros de auditoría exportados a CSV" msgid "Audit logs exported to JSON" msgstr "Registros de auditoría exportados a JSON" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Código de autenticación" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Generar títulos automáticamente" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Generar títulos automáticamente" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Generado automáticamente o introducido manualmente" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Seleccionar automáticamente" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Seleccionar automáticamente desactivado" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Seleccionar automáticamente activado" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Seleccionar fuentes para añadir al chat" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Incluye automáticamente conversaciones relevantes para el análisis sin selección manual" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" -msgstr "" +msgstr "Guardar automáticamente las transcripciones en tu CRM o base de datos" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." -msgstr "" +msgstr "Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos." #: src/components/conversation/AutoSelectConversations.tsx:96 msgid "Available" msgstr "Disponible" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Atrás" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Volver" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Volver" -#~ msgid "Back" -#~ msgstr "Atrás" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Volver a la selección" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Básico (Diapositivas esenciales del tutorial)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Configuración Básica" #~ msgid "Begin!" #~ msgstr "¡Comenzar!" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Beta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -675,52 +781,52 @@ msgstr "Beta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Visión general - Temas y patrones" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" -msgstr "" +msgstr "Reservar una llamada" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Ideas de brainstorming" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" -msgstr "" +msgstr "Construir paneles personalizados con datos de conversación en tiempo real" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Cancelar" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Cancelar" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "cancelar" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "cancelar" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Cancelar" @@ -729,7 +835,7 @@ msgstr "Cancelar" msgid "add.tag.filter.modal.cancel" msgstr "Cancelar" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "No se puede añadir una conversación vacía" @@ -740,16 +846,16 @@ msgstr "No se puede añadir una conversación vacía" msgid "Changes will be saved automatically" msgstr "Los cambios se guardarán automáticamente" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Chat" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Chat | Dembrane" @@ -759,7 +865,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Chats" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Chats" @@ -774,17 +880,25 @@ msgstr "Verificar acceso al micrófono" #~ msgid "Check microphone access" #~ msgstr "Verificar acceso al micrófono" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Revisa tu correo electrónico" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Comprobando..." +#~ msgid "Checking..." +#~ msgstr "Comprobando..." + +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Elegir un archivo de logo" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Elegir desde tus otros proyectos" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" -msgstr "" +msgstr "Elegir cuándo quieres recibir notificaciones" #: src/components/settings/FontSettingsCard.tsx:74 msgid "Choose your preferred theme for the interface" @@ -793,34 +907,42 @@ msgstr "Elige el tema que prefieras para la interfaz" #~ msgid "Citing the following sources" #~ msgstr "Citar las siguientes fuentes" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Haz clic en \"Subir archivos\" cuando estés listo para iniciar el proceso de subida." #: src/routes/project/HostGuidePage.tsx:1385 msgid "Click to edit" -msgstr "" +msgstr "Haz clic para editar" #: src/components/conversation/ConversationLinks.tsx:155 msgid "Click to see all {totalCount} conversations" msgstr "Haz clic para ver las {totalCount} conversaciones" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Clonar desde otro proyecto" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Clonar desde proyecto" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Clonar proyecto" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Clonar proyecto" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Cerrar" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Cerrar" @@ -828,9 +950,9 @@ msgstr "Cerrar" msgid "Collection" msgstr "Colección" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" -msgstr "" +msgstr "Casos de uso comunes:" #: src/components/chat/templates.ts:42 msgid "Compare & Contrast" @@ -839,16 +961,16 @@ msgstr "Comparar y Contrastar" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Compara y contrasta los siguientes elementos proporcionados en el contexto." -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Completar" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Temas concretos" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Continuar" @@ -857,12 +979,12 @@ msgstr "Continuar" msgid "Confirm New Password" msgstr "Confirmar Nueva Contraseña" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Confirmar Contraseña" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Publicar" @@ -870,7 +992,7 @@ msgstr "Publicar" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Conectando a los servicios de informes..." @@ -888,7 +1010,7 @@ msgstr "Conexión no saludable" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Contacta a tu representante de ventas para activar esta función hoy!" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Contexto" @@ -901,8 +1023,8 @@ msgstr "Contexto añadido:" #~ msgstr "Límite de contexto alcanzado" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Continuar" @@ -912,7 +1034,7 @@ msgstr "Continuar" #~ msgid "conversation" #~ msgstr "conversación" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Conversación añadida al chat" @@ -930,7 +1052,7 @@ msgstr "Conversación terminada" #~ msgid "Conversation processing" #~ msgstr "Procesando conversación" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Conversación eliminada del chat" @@ -939,13 +1061,13 @@ msgstr "Conversación eliminada del chat" msgid "Conversation Status" msgstr "Estado de la conversación" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Detalles del estado de la conversación" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" -msgstr "" +msgstr "Etiquetas de la conversación" #~ msgid "conversation.accordion.skeleton.title" #~ msgstr "Conversaciones" @@ -953,11 +1075,11 @@ msgstr "" #~ msgid "conversation.linking_conversations.deleted" #~ msgstr "La fuente fue eliminada" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "conversaciones" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Conversaciones" @@ -971,51 +1093,57 @@ msgstr "Conversaciones" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Enfriándose. Disponible en {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Copiado" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Copiado desde la conversación original" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" -msgstr "" +msgstr "Copiado!" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Copiar" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Copiar enlace" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Copiar enlace para compartir este informe" #: src/components/settings/TwoFactorSettingsCard.tsx:431 #: src/components/settings/TwoFactorSettingsCard.tsx:436 msgid "Copy secret" -msgstr "Copy secret" +msgstr "Copiar secreto" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Copiar Resumen" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" -msgstr "" +msgstr "Copiar al portapapeles" #~ msgid "Copy transcript" #~ msgstr "Copiar transcripción" @@ -1024,11 +1152,15 @@ msgstr "" msgid "Copying..." msgstr "Copiando..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Crear" -#: src/routes/auth/Register.tsx:57 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Crear un nuevo webhook desde cero" + +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Crear una Cuenta" @@ -1041,7 +1173,7 @@ msgstr "Crear biblioteca" #~ msgstr "Crear Biblioteca" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Crear nueva vista" @@ -1049,12 +1181,12 @@ msgstr "Crear nueva vista" #~ msgstr "Crear nueva vista" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Crear informe" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Crear vista" @@ -1062,25 +1194,41 @@ msgstr "Crear vista" msgid "Create View" msgstr "Crear Vista" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" -msgstr "" +msgstr "Crear Webhook" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Creado el" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Logo actual" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Personalizado" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Nombre de archivo personalizado" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Logo personalizado" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Prompt de título personalizado" + #~ msgid "Danger Zone" #~ msgstr "Zona de Peligro" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "URL del panel de control (enlace directo a la vista de conversaciones)" + #~ msgid "dashboard.dembrane.verify.description" #~ msgstr "Enable this feature to allow participants to create and approve \"verified objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview." @@ -1093,37 +1241,37 @@ msgstr "Nombre de archivo personalizado" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Predeterminado" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Predeterminado - Sin tutorial (Solo declaraciones de privacidad)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Eliminar" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Eliminar chat" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Eliminar Conversación" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Eliminar Proyecto" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" -msgstr "" +msgstr "Eliminar Webhook" #: src/components/participant/UserChunkMessage.tsx:68 msgid "Deleted successfully" @@ -1135,8 +1283,8 @@ msgstr "Eliminado con éxito" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane funciona con IA. Revisa bien las respuestas." @@ -1181,11 +1329,11 @@ msgstr "Desactivar autenticación de dos factores" msgid "Disabled" msgstr "Desactivado" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" -msgstr "" +msgstr "¿Necesito esto?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "¿Quieres contribuir a este proyecto?" @@ -1193,19 +1341,19 @@ msgstr "¿Quieres contribuir a este proyecto?" msgid "Do you want to stay in the loop?" msgstr "¿Quieres estar en el bucle?" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Documentación" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Descargar" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Descargar todas las transcripciones de conversaciones generadas para este proyecto." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Descargar Todas las Transcripciones" @@ -1213,33 +1361,50 @@ msgstr "Descargar Todas las Transcripciones" msgid "Download as" msgstr "Descargar como" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Descargar Audio" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "Descargar código QR" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Descargar transcripción" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Opciones de Descarga de Transcripción" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Arrastra archivos de audio aquí o haz clic para seleccionar archivos" #: src/routes/project/HostGuidePage.tsx:1397 msgid "Drag to reorder" -msgstr "" +msgstr "Arrastrar para reordenar" + +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Duración" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Holandés" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "por ejemplo, \"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" -msgstr "" +msgstr "por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" #~ msgid "ECHO" #~ msgstr "Echo" @@ -1253,19 +1418,19 @@ msgstr "" #~ msgid "ECHO!" #~ msgstr "¡ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" -msgstr "" +msgstr "Editar" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Editar Conversación" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Editar nombre de archivo" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Editar Proyecto" @@ -1281,16 +1446,16 @@ msgstr "Editar Contenido del Informe" msgid "report.editor.description" msgstr "Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" -msgstr "" +msgstr "Editar Webhook" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Modo de edición" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "Correo electrónico" @@ -1310,7 +1475,7 @@ msgstr "Correo electrónico verificado con éxito. Serás redirigido a la págin msgid "email@work.com" msgstr "email@trabajo.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Vacío" @@ -1330,30 +1495,34 @@ msgstr "Activar 2FA" #~ msgid "Enable Dembrane Verify" #~ msgstr "Activar Dembrane Verify" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Habilitar Explorar" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Activar Profundizar" +#~ msgid "Enable Go deeper" +#~ msgstr "Activar Profundizar" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Activar Hacerlo concreto" +#~ msgid "Enable Make it concrete" +#~ msgstr "Activar Hacerlo concreto" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" -msgstr "" +msgstr "Habilitar participación" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Habilitar Notificaciones de Reportes" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \"Echo\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes." @@ -1361,19 +1530,31 @@ msgstr "Habilita esta función para permitir a los participantes recibir notific #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \"ECHO\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \"Explorar\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes." + #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \"Get Reply\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \"Profundizar\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \"Profundizar\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Habilitar anonimización de transcripciones" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Activar autenticación de dos factores" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Habilitar Verificar" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Habilitado" @@ -1381,39 +1562,39 @@ msgstr "Habilitado" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "Fin de la lista • Todas las {0} conversaciones cargadas" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "Inglés" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Ingresa un término clave o nombre propio" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Ingresa un nombre para el nuevo conversation" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Ingresa un nombre para tu proyecto clonado" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" -msgstr "" +msgstr "Ingresa una clave secreta" #: src/components/settings/TwoFactorSettingsCard.tsx:374 msgid "Enter a valid code to turn off two-factor authentication." msgstr "Ingresa un código válido para desactivar la autenticación de dos factores." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Ingresa el nombre del archivo (sin extensión)" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Ingresa un nuevo nombre para el chat:" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Ingresa el código de 6 dígitos de tu aplicación de autenticación." @@ -1429,16 +1610,20 @@ msgstr "Ingresa tu contraseña" msgid "Enter your query" msgstr "Ingresa tu consulta" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Ingresado por el participante en el portal" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Error" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Error al clonar el proyecto" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Error al crear el informe" @@ -1449,91 +1634,104 @@ msgstr "Error al cargar los anuncios" #~ msgid "Error loading insights" #~ msgstr "Error al cargar los insights" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Error al cargar el proyecto" #~ msgid "Error loading quotes" #~ msgstr "Error al cargar las citas" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Ocurrió un error" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Error al actualizar el informe" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Error al subir \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" -msgstr "" +msgstr "Eventos" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" -msgstr "" +msgstr "Eventos a Escuchar" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Acceso al micrófono verificado con éxito" #~ msgid "Everything looks good – you can continue." #~ msgstr "Todo parece bien – puedes continuar." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" -msgstr "" +msgstr "Ejemplo de Payload de Webhook" #~ msgid "Experimental" #~ msgstr "Experimental" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Explorar" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Explorar" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Explora temas y patrones en todas las conversaciones" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "Explorando {conversationCount} conversaciones" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Exportar" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Error" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Error al añadir la conversación al chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Error al añadir la conversación al chat{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Error al añadir conversaciones al contexto" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Error al aprobar el artefacto. Por favor, inténtalo de nuevo." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Error al aprobar el artefacto. Por favor, inténtalo de nuevo." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Error al aprobar el resultado. Por favor, inténtalo de nuevo." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Error al copiar el chat. Por favor, inténtalo de nuevo." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "No se pudo copiar la transcripción. Inténtalo de nuevo." @@ -1541,13 +1739,13 @@ msgstr "No se pudo copiar la transcripción. Inténtalo de nuevo." msgid "Failed to delete response" msgstr "Error al eliminar la respuesta" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Error al desactivar la selección automática para este chat" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Error al activar la selección automática para este chat" @@ -1559,11 +1757,11 @@ msgstr "Error al activar la selección automática para este chat" msgid "Failed to finish conversation. Please try again." msgstr "Error al finalizar la conversación. Por favor, inténtalo de nuevo." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Error al generar {label}. Por favor, inténtalo de nuevo." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Error al generar el resumen. Inténtalo de nuevo más tarde." @@ -1580,9 +1778,9 @@ msgstr "Error al obtener los anuncios" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Error al cargar el audio o el audio no está disponible" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" -msgstr "" +msgstr "Error al cargar los webhooks" #: src/components/announcement/hooks/index.ts:338 #: src/components/announcement/hooks/index.ts:351 @@ -1598,30 +1796,38 @@ msgstr "Error al marcar el anuncio como leído" msgid "Failed to reconnect. Please try reloading the page." msgstr "Error al reconectar. Por favor, recarga la página." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Error al recargar. Por favor, inténtalo de nuevo." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Error al eliminar la conversación del chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Error al eliminar la conversación del chat{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Error al eliminar el logo" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Error al retranscribir la conversación. Por favor, inténtalo de nuevo." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Error al revisar el artefacto. Por favor, inténtalo de nuevo." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Error al revisar el artefacto. Por favor, inténtalo de nuevo." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Error al revisar el resultado. Por favor, inténtalo de nuevo." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1631,43 +1837,51 @@ msgstr "Error al revisar el artefacto. Por favor, inténtalo de nuevo." msgid "Failed to stop recording on device change. Please try again." msgstr "Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Error al subir el logo" + #~ msgid "Failed to verify email status. Please try again." #~ msgstr "Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" +msgid "participant.modal.echo.info.title" msgstr "Función disponible pronto" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "El archivo \"{0}\" excede el tamaño máximo de {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "El archivo \"{0}\" tiene un formato no soportado. Solo se permiten archivos de audio." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "El archivo \"{0}\" no es un formato de audio soportado. Solo se permiten archivos de audio." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "El archivo \"{0}\" es demasiado pequeño ({1}). El tamaño mínimo es {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "Tamaño del archivo: Mínimo {0}, Máximo {1}, hasta {MAX_FILES} archivos" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Nombre de archivo desde el archivo subido" + #~ msgid "Filter" #~ msgstr "Filtrar" @@ -1693,12 +1907,12 @@ msgid "participant.button.stop.finish" msgstr "Finalizar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Finalizar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Finalizar" @@ -1706,7 +1920,7 @@ msgstr "Finalizar" #~ msgstr "Finalizar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "¿Estás seguro de que quieres terminar la conversación?" @@ -1714,8 +1928,8 @@ msgstr "¿Estás seguro de que quieres terminar la conversación?" msgid "Finished" msgstr "Finalizado" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "Nombre" @@ -1725,23 +1939,35 @@ msgstr "Nombre" #~ msgid "Follow playback" #~ msgstr "Seguir reproducción" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Tamaño de fuente" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -msgstr "" +msgstr "Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "Francés" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" -msgstr "" +msgstr "Transcripción completa (cuando esté disponible)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Generar" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Generar un resumen primero" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Generar perspectivas a partir de tus conversaciones" @@ -1752,15 +1978,15 @@ msgstr "Generar secreto" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Generar Resumen" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Generando el resumen. Espera..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "Alemán" @@ -1769,7 +1995,7 @@ msgid "Get an immediate reply from Dembrane to help you deepen the conversation. msgstr "Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" msgstr "Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación." @@ -1777,45 +2003,44 @@ msgstr "Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar e msgid "Give me a list of 5-10 topics that are being discussed." msgstr "Dame una lista de 5-10 temas que se están discutiendo." -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Volver" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Volver" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Profundizar" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Profundizar" +#~ msgid "Go deeper" +#~ msgstr "Profundizar" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Ir al inicio" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Ir a la nueva conversación" #~ msgid "Grid view" #~ msgstr "Vista de cuadrícula" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "Tiene artefactos verificados" -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Ayúdanos a traducir" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Hola, {0}" @@ -1823,10 +2048,14 @@ msgstr "Hola, {0}" msgid "Hidden" msgstr "Oculto" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Joya oculta" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Ocultar" + #~ msgid "Hide {0}" #~ msgstr "Ocultar {0}" @@ -1847,15 +2076,15 @@ msgstr "Ocultar datos" msgid "Hide revision data" msgstr "Ocultar datos de revisión" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Inicio" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" -msgstr "" +msgstr "Cómo funciona:" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -1866,7 +2095,7 @@ msgstr "" "* ¿Cómo se ve el éxito?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "Entiendo" @@ -1891,21 +2120,21 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "Si estás satisfecho con el {objectLabel}, haz clic en \"Aprobar\" para mostrar que te sientes escuchado." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#~ msgstr "" +#~ msgstr "Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -msgstr "" +msgstr "Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -msgstr "" +msgstr "Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega." #~ msgid "In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view." #~ msgstr "Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista." @@ -1913,7 +2142,7 @@ msgstr "" #~ msgid "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" #~ msgstr "Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat" -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Incluir enlace al portal en el informe" @@ -1940,7 +2169,7 @@ msgstr "Insights" msgid "Invalid code. Please request a new one." msgstr "Código inválido. Por favor solicita uno nuevo." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Credenciales inválidas." @@ -1967,21 +2196,20 @@ msgstr "Parece que la biblioteca no está disponible para tu cuenta. Por favor, #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente." +msgid "participant.outcome.error.description" +msgstr "No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italiano" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Únete a {0} en Dembrane" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Únete a {0} en Dembrane" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -1994,12 +2222,12 @@ msgstr "Un momento" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Idioma" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Apellido" @@ -2014,13 +2242,13 @@ msgstr "Última vez guardado el {0}" msgid "Last Updated" msgstr "Última actualización" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" -msgstr "" +msgstr "Aprender más sobre webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" -msgstr "" +msgstr "Dejar vacío para mantener el existente" #: src/components/chat/TemplatesModal.tsx:127 msgid "Let us know!" @@ -2031,7 +2259,7 @@ msgstr "Háganos saber!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Biblioteca" @@ -2070,19 +2298,19 @@ msgstr "Enlace" #~ msgstr "Vivo" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Nivel de audio en vivo" #~ msgid "Live audio level:" #~ msgstr "Nivel de audio en vivo:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Vista Previa en Vivo" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Cargando" @@ -2099,7 +2327,7 @@ msgstr "Cargando acciones..." msgid "participant.concrete.loading.artefact" msgstr "Cargando artefacto" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Cargando registros de auditoría…" @@ -2107,70 +2335,68 @@ msgstr "Cargando registros de auditoría…" msgid "Loading collections..." msgstr "Cargando colecciones..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Cargando temas concretos…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Cargando micrófonos..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Cargando transcripción..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "cargando..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Cargando..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Cargando…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Iniciar sesión" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Iniciar sesión | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Iniciar sesión como usuario existente" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo eliminado" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo actualizado correctamente" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Cerrar sesión" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Más largo primero" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Hacerlo concreto" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Hacerlo concreto" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Marcar todos como leídos" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Marcar como leído" @@ -2191,47 +2417,47 @@ msgstr "El acceso al micrófono sigue denegado. Por favor verifica tu configurac #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Modo" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "Más templates" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Mover" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Mover Conversación" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Mover a otro Proyecto" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Mover a Proyecto" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Nombre" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Nombre A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" -msgstr "" +msgstr "El nombre es requerido" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Nombre Z-A" @@ -2239,7 +2465,7 @@ msgstr "Nombre Z-A" msgid "New" msgstr "Nuevo" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" msgstr "Nuevo nombre de conversación" @@ -2256,32 +2482,32 @@ msgstr "Se han añadido nuevas conversaciones desde que se generó la biblioteca msgid "New Password" msgstr "Nueva Contraseña" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "Nuevo Proyecto" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Más nuevos primero" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "¿Listo para comenzar?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Siguiente" @@ -2289,7 +2515,7 @@ msgstr "Siguiente" #~ msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "No" @@ -2297,16 +2523,16 @@ msgstr "No" msgid "No actions found" msgstr "No se encontraron acciones" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "No hay anuncios disponibles" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "No hay registros de auditoría que coincidan con los filtros actuales." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "No se encontraron chats. Inicia un chat usando el botón \"Preguntar\"." @@ -2317,11 +2543,11 @@ msgstr "No se encontraron chats. Inicia un chat usando el botón \"Preguntar\"." msgid "No collections found" msgstr "No se encontraron colecciones" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "No hay temas concretos disponibles." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "No hay contenido" @@ -2341,16 +2567,16 @@ msgstr "No hay conversaciones disponibles para crear la biblioteca" msgid "No conversations found." msgstr "No se encontraron conversaciones." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "No hay conversaciones aún" @@ -2360,16 +2586,16 @@ msgstr "No hay conversaciones aún" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "No se encontraron proyectos {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "No se encontraron proyectos para el término de búsqueda" @@ -2379,34 +2605,33 @@ msgstr "No se encontraron proyectos para el término de búsqueda" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "No se encontró ningún informe" #~ msgid "No resources found." #~ msgstr "No se encontraron recursos." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "Sin resultados" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "No se encontraron etiquetas" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "No hay transcripción disponible" #~ msgid "No transcript available for this conversation." #~ msgstr "No hay transcripción disponible para esta conversación." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "Aún no existe transcripción para esta conversación. Por favor, revisa más tarde." @@ -2417,23 +2642,27 @@ msgstr "Aún no existe transcripción para esta conversación. Por favor, revisa #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "Sin tutorial (solo declaraciones de privacidad)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc)." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "No hay temas de verificación configurados para este proyecto." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" -msgstr "" +msgstr "No hay webhooks configurados" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "No se encontraron webhooks" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "No añadidas" @@ -2441,32 +2670,36 @@ msgstr "No añadidas" msgid "Not available" msgstr "No disponible" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Notificar a los participantes cuando se publique un informe." + #~ msgid "Now" #~ msgstr "Ahora" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Más antiguos primero" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Una vez que hayas discutido, presiona \"revisar\" para ver cómo el {objectLabel} cambia para reflejar tu discusión." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Una vez que recibas el {objectLabel}, léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "En curso" #~ msgid "Ongoing" #~ msgstr "En curso" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Conversaciones en Curso" @@ -2489,13 +2722,17 @@ msgstr "Abrir" #~ msgid "Open Documentation" #~ msgstr "Abrir Documentación" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "¿Abierto para Participación?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Abrir guía" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" -msgstr "" +msgstr "Abrir guía del host" #. js-lingui-explicit-id #: src/components/participant/PermissionErrorModal.tsx:59 @@ -2505,30 +2742,62 @@ msgstr "Abrir guía de solución de problemas" #~ msgid "Open troubleshooting guide" #~ msgstr "Abrir guía de solución de problemas" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" -msgstr "" +msgstr "Opcional" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Campo opcional en la página de inicio" + +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Campo opcional en la página de agradecimientos" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Opciones" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Resultado aprobado correctamente!" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Resultado recargado correctamente!" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Resultado revisado correctamente!" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Resultado actualizado!" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "resultados" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Resultados" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Vista General" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Overview - Temas y patrones" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Contenido de la Página" @@ -2536,22 +2805,30 @@ msgstr "Contenido de la Página" msgid "Page not found" msgstr "Página no encontrada" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Título de la Página" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Participante" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Correo electrónico del participante" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Correos electrónicos del participante" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Funciones para participantes" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" -msgstr "" +msgstr "Nombre y correo electrónico del participante" #~ msgid "participant.button.echo" #~ msgstr "Echo" @@ -2661,22 +2938,22 @@ msgstr "" #~ msgid "participant.verify.selection.title" #~ msgstr "What do you want to verify?" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Los participantes podrán seleccionar etiquetas al crear conversaciones" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Contraseña" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Proteger el portal con contraseña (solicitar función)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" @@ -2684,7 +2961,7 @@ msgstr "Las contraseñas no coinciden" #~ msgid "Pause" #~ msgstr "Pausar" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Pausar lectura" @@ -2692,19 +2969,19 @@ msgstr "Pausar lectura" msgid "Pending" msgstr "Pendiente" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Elige el enfoque que encaje con tu pregunta" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Por favor, permite el acceso al micrófono para iniciar el test." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Por favor, permite el acceso al micrófono para iniciar el test." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Por favor, revisa más tarde o contacta al propietario del proyecto para más información." @@ -2715,26 +2992,25 @@ msgstr "Por favor, revisa tus entradas para errores." #~ msgid "Please do not close your browser" #~ msgstr "Por favor, no cierres su navegador" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Por favor, habilite la participación para habilitar el uso compartido" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Por favor, ingrese un correo electrónico válido." #~ msgid "Please keep this screen lit up (black screen = not recording)" #~ msgstr "Mantén esta pantalla encendida (pantalla negra = sin grabación)" -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Por favor, inicia sesión para continuar." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -2747,18 +3023,18 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Por favor, registra tu respuesta haciendo clic en el botón \"Iniciar Grabación\" de abajo. También puedes responder en texto haciendo clic en el icono de texto." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Por favor, selecciona un idioma para tu informe" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Por favor, selecciona un idioma para tu informe actualizado" #~ msgid "Please select at least one source" #~ msgstr "Por favor, selecciona al menos una fuente" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Selecciona conversaciones en la barra lateral para continuar" @@ -2774,21 +3050,21 @@ msgstr "Selecciona conversaciones en la barra lateral para continuar" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Por favor, espera {timeStr} antes de solicitar otra respuesta." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Biblioteca en proceso" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe." @@ -2796,20 +3072,20 @@ msgstr "Por favor, espera mientras actualizamos tu informe. Serás redirigido au msgid "Please wait while we verify your email address." msgstr "Por favor, espera mientras verificamos tu dirección de correo electrónico." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Contenido del Portal" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Editor del Portal" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Propulsado por" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Preparando tus conversaciones... Esto puede tardar un momento." @@ -2817,11 +3093,15 @@ msgstr "Preparando tus conversaciones... Esto puede tardar un momento." msgid "Preparing your experience" msgstr "Preparando tu experiencia" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Vista previa: El zorro rápido salta sobre el perro perezoso." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" -msgstr "" +msgstr "Imprimir / Guardar PDF" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Imprimir este informe" @@ -2829,12 +3109,12 @@ msgstr "Imprimir este informe" msgid "Privacy Statements" msgstr "Declaraciones de Privacidad" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Continuar" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Continuar" @@ -2845,7 +3125,7 @@ msgstr "Continuar" #~ msgstr "Procesando" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "Procesando <0>{totalCount, plural, one {# conversación} other {# conversaciones}} y añadiéndolas a tu chat" @@ -2858,12 +3138,12 @@ msgstr "Procesando <0>{totalCount, plural, one {# conversación} other {# conver #~ msgid "Processing Transcript" #~ msgstr "Procesando Transcripción" -#: src/components/report/UpdateReportModalButton.tsx:73 -#: src/components/report/CreateReportForm.tsx:51 +#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/CreateReportForm.tsx:52 msgid "Processing your report..." msgstr "Procesando tu informe..." -#: src/components/conversation/RetranscribeConversation.tsx:127 +#: src/components/conversation/RetranscribeConversation.tsx:143 msgid "Processing your retranscription request..." msgstr "Procesando tu solicitud de retranscripción..." @@ -2871,19 +3151,23 @@ msgstr "Procesando tu solicitud de retranscripción..." msgid "Project Created" msgstr "Proyecto creado" +#: src/components/conversation/RetranscribeConversation.tsx:172 +msgid "Project default: enabled. This will replace personally identifiable information with ." +msgstr "Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con ." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Biblioteca del Proyecto | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Nombre del proyecto" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" -msgstr "" +msgstr "Nombre y ID del proyecto" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "El nombre del proyecto debe tener al menos 4 caracteres" @@ -2891,26 +3175,26 @@ msgstr "El nombre del proyecto debe tener al menos 4 caracteres" msgid "Project not found" msgstr "Proyecto no encontrado" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Vista General del Proyecto | Dembrane" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Configuración del Proyecto" #~ msgid "project.sidebar.chat.end.description" #~ msgstr "Fin de la lista • Todas las {0} conversaciones cargadas" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Proyectos" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Proyectos | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Inicio de Proyectos" @@ -2918,65 +3202,69 @@ msgstr "Inicio de Proyectos" msgid "Provide an overview of the main topics and recurring themes" msgstr "Proporciona una visión general de los temas principales y los temas recurrentes" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Publicar" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Publicado" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Saca las citas más potentes de esta sesión" #~ msgid "Quotes" #~ msgstr "Citas" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Reutilizar configuraciones de un webhook existente" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Leer en voz alta" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "¿Listo para comenzar?" #~ msgid "Ready to Begin?" #~ msgstr "¿Listo para comenzar?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." -msgstr "" +msgstr "¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos." #: src/components/settings/TwoFactorSettingsCard.tsx:338 msgid "Recommended apps" msgstr "Aplicaciones recomendadas" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Reconectar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Grabar" #~ msgid "Record" #~ msgstr "Grabar" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Registrar otra conversación" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Grabación interrumpida" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Grabación pausada" @@ -2999,12 +3287,7 @@ msgstr "Temas recurrentes" msgid "References" msgstr "Referencias" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Refinar" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Actualizar" @@ -3015,24 +3298,24 @@ msgstr "Actualizar registros de auditoría" #~ msgid "Regenerate Library" #~ msgstr "Regenerar Biblioteca" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Regenerar Resumen" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Regenerando el artefacto" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Regenerando el resultado" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Regenerando el resumen. Espera..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "Registrar | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "Registrar como nuevo usuario" @@ -3040,7 +3323,7 @@ msgstr "Registrar como nuevo usuario" #~ msgstr "Relevancia" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Recargar" @@ -3050,44 +3333,48 @@ msgid "participant.button.reload" msgstr "Recargar" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Recargar página" #~ msgid "Reload Page" #~ msgstr "Recargar Página" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Eliminar" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "Eliminar Correo Electrónico" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Eliminar archivo" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Eliminar de este chat" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Renombrar" #~ msgid "Rename" #~ msgstr "Renombrar" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Prompt de Respuesta" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Informe" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Reportar un problema" @@ -3096,11 +3383,11 @@ msgstr "Reportar un problema" msgid "Report Created - {0}" msgstr "Informe creado - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Notificaciones de Reportes" @@ -3118,25 +3405,29 @@ msgstr "Solicitar Acceso" msgid "Request Access" msgstr "Solicitar Acceso" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Solicitar Restablecimiento de Contraseña" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Solicitar Restablecimiento de Contraseña | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Por favor, espera mientras verificamos el acceso al micrófono." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Solicitando acceso al micrófono para detectar dispositivos disponibles..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Requiere que \"Solicitar correo electrónico?\" esté habilitado" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" -msgstr "" +msgstr "Restablecer" #~ msgid "Reset All Options" #~ msgstr "Restablecer todas las opciones" @@ -3150,8 +3441,8 @@ msgstr "Restablecer Contraseña" msgid "Reset Password | Dembrane" msgstr "Restablecer Contraseña | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Restablecer a valores predeterminados" @@ -3166,27 +3457,27 @@ msgstr "Reanudar" #~ msgid "Resume" #~ msgstr "Reanudar" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Retranscribir" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Retranscribir conversación" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Retranscribir conversación" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "La retranscripción ha comenzado. La nueva conversación estará disponible pronto." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Reintentar" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Reintentar subida" @@ -3194,7 +3485,7 @@ msgstr "Reintentar subida" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Revisar archivos antes de subir" @@ -3203,33 +3494,33 @@ msgid "Review processing status for every conversation collected in this project msgstr "Revisar el estado de procesamiento para cada conversación recopilada en este proyecto." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "revisar" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Revisión #{revisionNumber}" #: src/routes/project/HostGuidePage.tsx:1391 msgid "Right-click to highlight" -msgstr "" +msgstr "Haga clic con el botón derecho para resaltar" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Filas por página" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "guardar" #~ msgid "Save" #~ msgstr "Guardar" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" -msgstr "" +msgstr "Guardar Cambios" #: src/components/form/SaveStatus.tsx:31 msgid "Save Error!" @@ -3249,11 +3540,11 @@ msgid "Scroll to bottom" msgstr "Desplazarse al final" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Buscar" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Buscar" @@ -3261,20 +3552,20 @@ msgstr "Buscar" msgid "Search conversations" msgstr "Buscar conversaciones" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Buscar proyectos" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Buscar Proyectos" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Buscar proyectos..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Buscar etiquetas" @@ -3283,10 +3574,14 @@ msgid "Search templates..." msgstr "Buscar templates..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Texto de búsqueda:" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Buscar webhooks..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Buscó en las fuentes más relevantes" @@ -3295,9 +3590,9 @@ msgstr "Buscó en las fuentes más relevantes" msgid "Searching through the most relevant sources" msgstr "Buscando en las fuentes más relevantes" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" -msgstr "" +msgstr "Secreto" #: src/components/settings/TwoFactorSettingsCard.tsx:436 msgid "Secret copied" @@ -3306,73 +3601,77 @@ msgstr "Secreto copiado" #~ msgid "See conversation status details" #~ msgstr "Ver detalles del estado de la conversación" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "Hasta pronto" #~ msgid "Segments" #~ msgstr "Segmentos" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Seleccionar un micrófono" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Selecciona un webhook para clonar" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Seleccionar todo" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Seleccionar todo ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Seleccionar todos los resultados" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" -msgstr "" +msgstr "Selecciona al menos un evento" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Seleccionar archivos de audio para subir" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Selecciona conversaciones y encuentra citas exactas" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Selecciona conversaciones en la barra lateral" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Seleccionar Proyecto" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Seleccionar etiquetas" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Selecciona el tipo de retroalimentación o participación que quieres fomentar." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Seleccionar tutorial" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Selecciona qué temas pueden usar los participantes para verificación." +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Seleccione qué temas pueden usar los participantes para la verificación." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Seleccionar un micrófono" @@ -3380,65 +3679,65 @@ msgstr "Seleccionar un micrófono" #~ msgstr "Selecciona tu micrófono:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Archivos seleccionados ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Micrófono seleccionado" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Selección demasiado grande" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Selección demasiado grande. Algunas conversaciones no se añadieron." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Enviar" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" -msgstr "" +msgstr "Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones" #~ msgid "Sentiment" #~ msgstr "Sentimiento" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Nombre de la Sesión" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Configurando tu primer proyecto" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Configuración" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Configuración" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Configuración | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Compartir" +#~ msgid "Share" +#~ msgstr "Compartir" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Compartir este informe" @@ -3446,25 +3745,29 @@ msgstr "Compartir este informe" msgid "Share your details here" msgstr "Comparte tus detalles aquí" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Compartir tu voz" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Comparte tu voz escaneando el código QR de abajo." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Más corto primero" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Mostrar" + #~ msgid "Show {0}" #~ msgstr "Mostrar {0}" #~ msgid "Show all" #~ msgstr "Mostrar todo" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Mostrar reproductor de audio" @@ -3479,11 +3782,11 @@ msgstr "Mostrar datos" msgid "Show IP addresses" msgstr "Mostrar direcciones IP" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Mostrar menos" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Mostrar más" @@ -3496,14 +3799,14 @@ msgstr "Mostrar referencias" msgid "Show revision data" msgstr "Mostrar datos de revisión" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Mostrar línea de tiempo en el informe (solicitar función)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Mostrar marcas de tiempo (experimental)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "Mostrando {displayFrom}–{displayTo} de {totalItems} entradas" @@ -3522,35 +3825,35 @@ msgstr "Omitir" #~ msgid "Skip data privacy slide (Host manages consent)" #~ msgstr "Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Omitidas porque la selección era demasiado grande." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Algunos archivos ya estaban seleccionados y no se agregarán dos veces." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Algunas pueden omitirse (sin transcripción o selección demasiado grande)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Algo salió mal" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste" @@ -3570,16 +3873,16 @@ msgstr "Algo salió mal al generar el secreto." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Algo salió mal al subir el archivo: {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Algo salió mal. Por favor, inténtalo de nuevo." +msgid "participant.explore.generic.error.message" +msgstr "Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Algo salió mal. Por favor, inténtalo de nuevo." @@ -3588,8 +3891,8 @@ msgstr "Algo salió mal. Por favor, inténtalo de nuevo." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Ordenar" @@ -3601,28 +3904,32 @@ msgstr "Fuente {0}" #~ msgid "Sources:" #~ msgstr "Fuentes:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Español" #~ msgid "Speaker" #~ msgstr "Locutor" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Contexto Específico" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Detalles concretos" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Detalles concretos - Conversaciones seleccionadas" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Comenzar desde cero" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Iniciar nueva conversación" @@ -3645,12 +3952,12 @@ msgstr "Empezar de nuevo" msgid "Status" msgstr "Estado" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Detener" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Detener" @@ -3658,19 +3965,19 @@ msgstr "Detener" msgid "Strategic Planning" msgstr "Planificación Estratégica" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Enviar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Enviar" #~ msgid "Submitted via text input" #~ msgstr "Enviado via entrada de texto" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Éxito" @@ -3683,38 +3990,38 @@ msgstr "Sugerido:" msgid "Summarize" msgstr "Resumir" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Resume las ideas clave de mis entrevistas" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Resume esta entrevista en un artículo para compartir" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Resumen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" -msgstr "" +msgstr "Resumen (cuando esté disponible)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Resumen generado." #~ msgid "Summary not available yet" #~ msgstr "Resumen no disponible todavía" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Resumen regenerado." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "El resumen estará disponible cuando la conversación esté transcrita" -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -3727,11 +4034,11 @@ msgstr "Cambiar a entrada de texto" msgid "System" msgstr "Sistema" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Etiquetas" @@ -3748,7 +4055,7 @@ msgstr "Tómate un tiempo para crear un resultado que haga tu contribución conc msgid "participant.refine.make.concrete.description" msgstr "Tómate un tiempo para crear un resultado que haga tu contribución concreta." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Plantilla aplicada" @@ -3756,27 +4063,27 @@ msgstr "Plantilla aplicada" msgid "Templates" msgstr "Plantillas" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" -msgstr "" +msgstr "Testear Webhook" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Texto" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "¡Gracias por participar!" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Contenido de la Página de Gracias" -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" msgstr "¡Gracias!" -#: src/routes/auth/Login.tsx:141 +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación." @@ -3788,7 +4095,7 @@ msgid "The code didn't work, please try again." msgstr "El código no ha funcionado, inténtalo otra vez." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste" @@ -3800,9 +4107,9 @@ msgstr "Algo salió mal con la conversación. Por favor, inténtalo de nuevo o c #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." -msgstr "" +msgstr "El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor)." #: src/components/chat/Sources.tsx:22 msgid "The following conversations were automatically added to the context" @@ -3814,11 +4121,11 @@ msgstr "Las siguientes conversaciones se agregaron automáticamente al contexto" #~ msgid "the project library." #~ msgstr "la biblioteca del proyecto." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "Estamos generando el resumen. Espera a que esté disponible." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "Estamos regenerando el resumen. Espera a que esté disponible." @@ -3831,23 +4138,27 @@ msgstr "Estamos regenerando el resumen. Espera a que esté disponible." #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "La transcripción de esta conversación se está procesando. Por favor, revisa más tarde." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Tema" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte." @@ -3862,7 +4173,7 @@ msgstr "Hubo un error al verificar tu correo electrónico. Por favor, inténtalo #~ msgstr "Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "Estas conversaciones fueron excluidas debido a la falta de transcripciones." @@ -3870,7 +4181,7 @@ msgstr "Estas conversaciones fueron excluidas debido a la falta de transcripcion msgid "These default view templates will be generated when you create your first library." msgstr "Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Pensando..." @@ -3890,7 +4201,7 @@ msgstr "Esta conversación es una copia de" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "Este correo electrónico ya está en la lista." @@ -3898,17 +4209,17 @@ msgstr "Este correo electrónico ya está en la lista." #~ msgstr "Este correo electrónico ya está suscrito a notificaciones." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "Esta función estará disponible en {remainingTime} segundos." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." -msgstr "" +msgstr "Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación." #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:209 @@ -3924,38 +4235,38 @@ msgstr "Biblioteca" #~ msgid "This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header." #~ msgstr "Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "Este idioma se usará para el Portal del Participante." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "Esta página se muestra después de que el participante haya completado la conversación." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial." #~ msgid "This project library was generated on" #~ msgstr "Esta biblioteca del proyecto se generó el" -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar." -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "Este informe no está disponible. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "Este informe fue abierto por {0} personas" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "Este título se muestra a los participantes cuando inician una conversación" @@ -3963,11 +4274,11 @@ msgstr "Este título se muestra a los participantes cuando inician una conversac msgid "This will clear your current input. Are you sure?" msgstr "Esto borrará tu entrada actual. ¿Estás seguro?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios." @@ -3977,7 +4288,7 @@ msgid "add.tag.filter.modal.info" msgstr "Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "Esto solo tomará unos momentos" @@ -3986,7 +4297,7 @@ msgstr "Esto solo tomará unos momentos" msgid "participant.concrete.loading.artefact.description" msgstr "Esto solo tomará un momento" -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "Esto reemplazará la información personal identificable con ." @@ -3997,35 +4308,43 @@ msgstr "Esto reemplazará la información personal identificable con . msgid "Timestamp" msgstr "Marca de tiempo" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:592 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:815 msgid "Timestamps and duration" -msgstr "" +msgstr "Marcas de tiempo y duración" -#: src/components/participant/ParticipantBody.tsx:143 +#: src/components/participant/ParticipantBody.tsx:144 msgid "Tip" msgstr "Consejo" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:771 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:997 msgid "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." -msgstr "" +msgstr "Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente." + +#: src/components/conversation/ConversationEdit.tsx:319 +msgid "Title" +msgstr "Título" -#: src/components/conversation/ConversationEdit.tsx:200 +#: src/components/conversation/ConversationEdit.tsx:381 msgid "To assign a new tag, please create it first in the project overview." msgstr "Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto." -#: src/components/report/CreateReportForm.tsx:91 +#: src/components/report/CreateReportForm.tsx:92 msgid "To generate a report, please start by adding conversations in your project" msgstr "Para generar un informe, por favor comienza agregando conversaciones en tu proyecto" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:537 +#: src/components/conversation/SelectAllConfirmationModal.tsx:565 msgid "select.all.modal.context.limit" msgstr "Demasiado grande" -#: src/components/conversation/SelectAllConfirmationModal.tsx:128 +#: src/components/conversation/SelectAllConfirmationModal.tsx:129 msgid "Too long" msgstr "Demasiado largo" +#: src/components/conversation/ConversationEdit.tsx:340 +msgid "Topic-based title describing what was discussed" +msgstr "Título basado en temas que describe lo que se discutió" + #: src/components/view/CreateViewForm.tsx:123 msgid "Topics" msgstr "Temas" @@ -4037,12 +4356,12 @@ msgstr "Temas" msgid "Transcribing..." msgstr "Transcribiendo..." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:83 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:84 #: src/components/layout/ProjectConversationLayout.tsx:47 msgid "Transcript" msgstr "Transcripción" -#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:28 msgid "Transcript copied to clipboard" msgstr "Transcripción copiada al portapapeles" @@ -4132,15 +4451,15 @@ msgstr "" "\n" "Nota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:624 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:850 msgid "Trigger automated workflows in tools like Zapier, Make, or n8n" -msgstr "" +msgstr "Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n" #: src/components/announcement/AnnouncementErrorState.tsx:34 msgid "Try Again" msgstr "Intentar de nuevo" -#: src/components/chat/ChatModeSelector.tsx:163 +#: src/components/chat/ChatModeSelector.tsx:162 msgid "Try asking" msgstr "Prueba a preguntar" @@ -4164,32 +4483,36 @@ msgstr "Autenticación en dos pasos activada" msgid "Type" msgstr "Tipo" -#: src/routes/project/chat/ProjectChatRoute.tsx:726 +#: src/routes/project/chat/ProjectChatRoute.tsx:742 msgid "Type a message..." msgstr "Escribe un mensaje..." -#: src/components/participant/ParticipantConversationText.tsx:207 +#: src/components/participant/ParticipantConversationText.tsx:214 msgid "Type your response here" msgstr "Escribe tu respuesta aquí" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:19 -msgid "participant.concrete.artefact.error.title" -msgstr "No se pudo cargar el artefacto" - #: src/components/settings/AuditLogsCard.tsx:511 msgid "Unable to load audit logs." msgstr "No se pudieron cargar los registros de auditoría." +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +msgid "participant.outcome.error.title" +msgstr "No se puede cargar el resultado" + #: src/components/participant/verify/VerifyArtefact.tsx:89 -msgid "Unable to load the generated artefact. Please try again." -msgstr "No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo." +#~ msgid "Unable to load the generated artefact. Please try again." +#~ msgstr "No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo." + +#: src/components/participant/verify/VerifyArtefact.tsx:90 +msgid "Unable to load the generated outcome. Please try again." +msgstr "No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo." #: src/components/conversation/ConversationChunkAudioTranscript.tsx:69 msgid "Unable to process this chunk" msgstr "No se puede procesar este fragmento" -#: src/routes/project/chat/ProjectChatRoute.tsx:431 +#: src/routes/project/chat/ProjectChatRoute.tsx:433 msgid "Undo" msgstr "Deshacer" @@ -4197,15 +4520,15 @@ msgstr "Deshacer" msgid "Unknown" msgstr "Desconocido" -#: src/components/conversation/SelectAllConfirmationModal.tsx:132 +#: src/components/conversation/SelectAllConfirmationModal.tsx:133 msgid "Unknown reason" msgstr "Razón desconocida" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:39 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:41 msgid "unread announcement" msgstr "anuncio sin leer" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:40 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:42 msgid "unread announcements" msgstr "anuncios sin leer" @@ -4221,20 +4544,20 @@ msgstr "Desuscribirse" msgid "Untitled Conversation" msgstr "Conversación sin título" -#: src/components/report/UpdateReportModalButton.tsx:66 +#: src/components/report/UpdateReportModalButton.tsx:67 msgid "Update" msgstr "Actualizar" -#: src/components/report/UpdateReportModalButton.tsx:70 -#: src/components/report/UpdateReportModalButton.tsx:122 +#: src/components/report/UpdateReportModalButton.tsx:76 +#: src/components/report/UpdateReportModalButton.tsx:133 msgid "Update Report" msgstr "Actualizar Informe" -#: src/components/report/UpdateReportModalButton.tsx:64 +#: src/components/report/UpdateReportModalButton.tsx:65 msgid "Update the report to include the latest data" msgstr "Actualiza el informe para incluir los datos más recientes" -#: src/components/report/UpdateReportModalButton.tsx:91 +#: src/components/report/UpdateReportModalButton.tsx:100 msgid "Update your report to include the latest changes in your project. The link to share the report would remain the same." msgstr "Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo." @@ -4246,28 +4569,33 @@ msgstr "Actualizar" msgid "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." msgstr "Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente." +#: src/components/settings/WhitelabelLogoCard.tsx:152 #: src/components/project/ProjectUploadSection.tsx:15 -#: src/components/dropzone/UploadConversationDropzone.tsx:504 -#: src/components/conversation/ConversationAccordion.tsx:409 +#: src/components/dropzone/UploadConversationDropzone.tsx:506 +#: src/components/conversation/ConversationAccordion.tsx:414 msgid "Upload" msgstr "Subir" +#: src/components/settings/WhitelabelLogoCard.tsx:100 +msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Sube un logo personalizado para reemplazar el logo de Dembrane en el portal, panel de control, informes y guía de host." + #~ msgid "Upload Audio" #~ msgstr "Subir Audio" -#: src/components/dropzone/UploadConversationDropzone.tsx:517 +#: src/components/dropzone/UploadConversationDropzone.tsx:519 msgid "Upload Complete" msgstr "Subida Completa" -#: src/components/dropzone/UploadConversationDropzone.tsx:498 +#: src/components/dropzone/UploadConversationDropzone.tsx:499 msgid "Upload conversations" msgstr "Subir conversaciones" -#: src/components/dropzone/UploadConversationDropzone.tsx:334 +#: src/components/dropzone/UploadConversationDropzone.tsx:335 msgid "Upload failed. Please try again." msgstr "Subida fallida. Por favor, inténtalo de nuevo." -#: src/components/dropzone/UploadConversationDropzone.tsx:694 +#: src/components/dropzone/UploadConversationDropzone.tsx:725 msgid "Upload Files" msgstr "Subir Archivos" @@ -4280,43 +4608,47 @@ msgstr "Subir Archivos" #~ msgid "Uploaded" #~ msgstr "Subido" -#: src/components/dropzone/UploadConversationDropzone.tsx:518 +#: src/components/dropzone/UploadConversationDropzone.tsx:520 msgid "Uploading Audio Files..." msgstr "Subiendo archivos de audio..." #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:60 +#: src/components/participant/StopRecordingConfirmationModal.tsx:62 msgid "participant.modal.uploading" msgstr "Subiendo audio..." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:550 +#: src/components/participant/ParticipantConversationAudio.tsx:556 msgid "participant.modal.interruption.uploading" msgstr "Subiendo audio..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:211 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:406 msgid "URL is required" -msgstr "" +msgstr "La URL es requerida" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:208 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:403 msgid "URL must start with http:// or https://" -msgstr "" +msgstr "La URL debe empezar con http:// o https://" #~ msgid "Use experimental features" #~ msgstr "Usar funciones experimentales" -#: src/components/conversation/RetranscribeConversation.tsx:152 +#: src/components/conversation/RetranscribeConversation.tsx:169 msgid "Use PII Redaction" msgstr "Usar redaction de PII" -#: src/routes/project/chat/ProjectChatRoute.tsx:748 -#: src/routes/project/chat/ProjectChatRoute.tsx:778 +#: src/routes/project/chat/ProjectChatRoute.tsx:765 +#: src/routes/project/chat/ProjectChatRoute.tsx:795 msgid "Use Shift + Enter to add a new line" msgstr "Usa Shift + Enter para agregar una nueva línea" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:820 +#: src/components/settings/WhitelabelLogoCard.tsx:134 +msgid "Using default Dembrane logo" +msgstr "Usando el logo de Dembrane por defecto" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" -msgstr "" +msgstr "¿Usando webhooks? Nos encantaría escuchar de ti" #~ msgid "Verification Topics" #~ msgstr "Verification Topics" @@ -4325,17 +4657,17 @@ msgstr "" #~ msgstr "verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:111 +#: src/components/conversation/SelectAllConfirmationModal.tsx:112 msgid "select.all.modal.verified" msgstr "Verificado" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:436 +#: src/components/conversation/SelectAllConfirmationModal.tsx:444 msgid "select.all.modal.loading.verified" msgstr "Verificado" #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:1333 +#: src/components/conversation/ConversationAccordion.tsx:1347 msgid "conversation.filters.verified.text" msgstr "Verificado" @@ -4345,11 +4677,21 @@ msgstr "Verificado" #~ msgid "Verified Artefacts" #~ msgstr "Verified Artefacts" -#: src/components/conversation/ConversationAccordion.tsx:579 +#: src/components/conversation/ConversationAccordion.tsx:569 msgid "verified artifacts" msgstr "verified artifacts" -#: src/routes/auth/Login.tsx:277 +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" +msgstr "dembrane Verificar" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verificar" + +#: src/routes/auth/Login.tsx:288 msgid "Verify code" msgstr "Verificar código" @@ -4370,11 +4712,11 @@ msgstr "Vista" msgid "View Details" msgstr "Ver detalles" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:601 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:827 msgid "View example payload" -msgstr "" +msgstr "Ver ejemplo de payload" -#: src/components/participant/ParticipantBody.tsx:229 +#: src/components/participant/ParticipantBody.tsx:242 msgid "View your responses" msgstr "Ver tus respuestas" @@ -4395,7 +4737,7 @@ msgstr "¿Quieres añadir una plantilla a \"Dembrane\"?" #~ msgstr "Advertencia: Has añadido {0} términos clave. Solo los primeros {ASSEMBLYAI_MAX_HOTWORDS} serán utilizados por el motor de transcripción." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:366 +#: src/components/participant/MicrophoneTest.tsx:389 msgid "participant.alert.microphone.access.issue" msgstr "No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo." @@ -4416,7 +4758,7 @@ msgstr "No pudimos activar la autenticación de dos factores. Verifica tu códig #~ msgid "We have sent you an email with next steps. If you don't see it, check your spam folder." #~ msgstr "Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado." -#: src/routes/auth/CheckYourEmail.tsx:14 +#: src/routes/auth/CheckYourEmail.tsx:15 msgid "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" msgstr "Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com" @@ -4425,15 +4767,15 @@ msgstr "Te hemos enviado un correo electrónico con los pasos siguientes. Si no #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:450 -msgid "participant.modal.refine.info.reason" -msgstr "Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias." +msgid "participant.modal.echo.info.reason" +msgstr "Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias." -#: src/routes/participant/ParticipantPostConversation.tsx:252 +#: src/routes/participant/ParticipantPostConversation.tsx:263 msgid "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." msgstr "Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:291 +#: src/components/participant/MicrophoneTest.tsx:292 msgid "participant.test.microphone.description" msgstr "Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión." @@ -4444,34 +4786,34 @@ msgstr "Vamos a probar tu micrófono para asegurarnos de que todos tengan la mej msgid "We’re picking up some silence. Try speaking up so your voice comes through clearly." msgstr "Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:745 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:971 msgid "Webhook" -msgstr "" +msgstr "Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:216 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:411 msgid "Webhook URL" -msgstr "" +msgstr "URL del Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:701 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:927 msgid "Webhooks" -msgstr "" +msgstr "Webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:545 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:742 msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -msgstr "" +msgstr "Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \"sistema de notificaciones\" para tus otras herramientas." -#: src/components/participant/ParticipantBody.tsx:124 +#: src/components/participant/ParticipantBody.tsx:125 msgid "Welcome" msgstr "Bienvenido" -#: src/routes/auth/Login.tsx:108 +#: src/routes/auth/Login.tsx:109 msgid "Welcome back" msgstr "Bienvenido de nuevo" #~ msgid "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." #~ msgstr "Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico." -#: src/routes/project/chat/ProjectChatRoute.tsx:529 +#: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." msgstr "¡Bienvenido a Dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados." @@ -4482,52 +4824,72 @@ msgstr "¡Bienvenido a Dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive." -#: src/routes/project/chat/ProjectChatRoute.tsx:528 +#: src/routes/project/chat/ProjectChatRoute.tsx:535 msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." msgstr "Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico." -#: src/components/report/CreateReportForm.tsx:79 +#: src/components/report/CreateReportForm.tsx:80 msgid "Welcome to Reports!" msgstr "¡Bienvenido a los informes!" -#: src/routes/project/ProjectsHome.tsx:152 +#: src/routes/project/ProjectsHome.tsx:154 msgid "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" msgstr "¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \"Crear\" para configurar para comenzar!" -#: src/routes/auth/Login.tsx:191 +#: src/routes/auth/Login.tsx:192 msgid "Welcome!" msgstr "¡Bienvenido!" -#: src/components/chat/ChatModeSelector.tsx:46 +#: src/components/chat/ChatModeSelector.tsx:47 msgid "What are the main themes across all conversations?" msgstr "¿Cuáles son los temas principales en todas las conversaciones?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:538 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 msgid "What are webhooks? (2 min read)" -msgstr "" +msgstr "¿Qué son los webhooks? (2 min de lectura)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:576 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:799 msgid "What data is sent?" -msgstr "" +msgstr "¿Qué datos se envían?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:196 +#: src/components/participant/verify/VerifySelection.tsx:201 msgid "participant.concrete.selection.title" msgstr "¿Qué quieres verificar?" -#: src/components/chat/ChatModeSelector.tsx:48 +#: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" msgstr "¿Qué patrones salen de los datos?" -#: src/components/chat/ChatModeSelector.tsx:54 +#: src/components/chat/ChatModeSelector.tsx:55 msgid "What were the key moments in this conversation?" msgstr "¿Cuáles fueron los momentos clave de esta conversación?" -#: src/components/chat/ChatModeSelector.tsx:242 +#: src/components/chat/ChatModeSelector.tsx:250 msgid "What would you like to explore?" msgstr "¿Qué te gustaría explorar?" -#: src/components/report/CreateReportForm.tsx:120 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:778 +msgid "When a participant opens the portal, enters their details, and begins a conversation" +msgstr "Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:785 +msgid "When all audio has been converted to text and the full transcript is available" +msgstr "Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:773 +msgid "When are webhooks triggered?" +msgstr "¿Cuándo se activan los webhooks?" + +#: src/components/project/ProjectPortalEditor.tsx:1178 +msgid "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." +msgstr "Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas." + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:792 +msgid "When the summary is ready (includes both transcript and summary)" +msgstr "Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)" + +#: src/components/report/CreateReportForm.tsx:121 msgid "will be included in your report" msgstr "se incluirá en tu informe" @@ -4537,7 +4899,7 @@ msgid "add.tag.filter.modal.description" msgstr "¿Te gustaría añadir esta etiqueta a tus filtros actuales?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:177 +#: src/components/participant/ParticipantConversationText.tsx:179 msgid "participant.button.finish.yes.text.mode" msgstr "Sí" @@ -4550,7 +4912,7 @@ msgid "You are already unsubscribed or your link is invalid." msgstr "Ya estás desuscribido o tu enlace es inválido." #. placeholder {0}: MAX_FILES - selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:399 +#: src/components/dropzone/UploadConversationDropzone.tsx:400 msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." msgstr "Solo puedes subir hasta {MAX_FILES} archivos a la vez. Solo los primeros {0} archivos se agregarán." @@ -4558,16 +4920,16 @@ msgstr "Solo puedes subir hasta {MAX_FILES} archivos a la vez. Solo los primeros #~ msgstr "Aún puedes usar la función Preguntar para chatear con cualquier conversación" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:247 +#: src/components/conversation/SelectAllConfirmationModal.tsx:249 msgid "select.all.modal.already.added" msgstr "Ya has añadido <0>{existingContextCount, plural, one {# conversación} other {# conversaciones}} a este chat." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "Ya has añadido todas las conversaciones relacionadas con esto" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "Has cambiado tu micrófono. Por favor, haz clic en \"Continuar\", para continuar con la sesión." @@ -4575,25 +4937,25 @@ msgstr "Has cambiado tu micrófono. Por favor, haz clic en \"Continuar\", para c msgid "You have successfully unsubscribed." msgstr "Has desuscribido con éxito." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "También puedes elegir registrar otra conversación." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "Pareces estar desconectado, por favor verifica tu conexión a internet" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "Pronto recibirás {objectLabel} para verificar." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "¡Tu aprobación nos ayuda a entender lo que realmente piensas!" @@ -4610,11 +4972,11 @@ msgstr "Tus entradas se guardarán automáticamente." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Tus respuestas" @@ -4623,7 +4985,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Tus Vistas" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index cc4f3bab..c5b103ac 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Anuncios\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Disponible\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"iH8pgl\":[\"Atrás\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Creado el\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Dembrane Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Holandés\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"ycR/52\":[\"Habilitar Dembrane Echo\"],\"mKGCnZ\":[\"Habilitar Dembrane ECHO\"],\"Dh2kHP\":[\"Habilitar Dembrane Respuesta\"],\"d9rIJ1\":[\"Activar Dembrane Verify\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Opciones\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"participant.button.refine\":[\"Refinar\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"4LFZoj\":[\"Verificar código\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a Dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Dembrane Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"ycR/52\":[\"Habilitar Dembrane Echo\"],\"mKGCnZ\":[\"Habilitar Dembrane ECHO\"],\"Dh2kHP\":[\"Habilitar Dembrane Respuesta\"],\"d9rIJ1\":[\"Activar Dembrane Verify\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de Dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de Dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verificar\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a Dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 3809cdf6..ce46568d 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -40,17 +40,17 @@ msgid "Something went wrong" msgstr "Une erreur s'est produite" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "Nous préparons votre espace de travail." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Préparation de ton dashboard" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Bon retour" @@ -95,11 +95,81 @@ msgstr "Bon retour" #~ msgstr "Nous avons sauvegardé votre enregistrement jusqu'à <0>{formattedDuration} mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "Approfondir" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "Concrétiser" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Refine\" Bientôt disponible" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Feature Bientôt disponible" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Va plus profond" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Rends-le concret" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Rends-le concret" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Refine" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Régénération de l'artefact" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret »." + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "Impossible de charger l'artefact" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr "La bibliothèque prendra {duration}" -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr " Envoyer" @@ -111,41 +181,41 @@ msgstr " Se désabonner des notifications" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "Approfondir" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" bientôt disponible" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "Concrétiser" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Explorer\" bientôt disponible" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Refine\" Bientôt disponible" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Vérifier\" bientôt disponible" #~ msgid "(for enhanced audio processing)" #~ msgstr "(pour un traitement audio amélioré)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# étiquette} other {# étiquettes}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Étiquette :} other {Étiquettes :}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -155,7 +225,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} ajoutées" @@ -170,11 +240,11 @@ msgstr "{0} Conversations • Modifié le {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} non ajoutées" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} sélectionné(s)" @@ -185,14 +255,14 @@ msgstr "{conversationCount} sélectionné(s)" #~ msgstr "{diffInHours} heures" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Actuellement, # conversation est prête à être analysée.} other {Actuellement, # conversations sont prêtes à être analysées.}}" #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} minutes et {seconds} secondes" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} lit actuellement" @@ -200,7 +270,7 @@ msgstr "{readingNow} lit actuellement" #~ msgstr "{seconds} secondes" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{0} en cours de traitement." @@ -222,21 +292,21 @@ msgstr "+{hiddenCount} conversations" msgid "0 Aspects" msgstr "0 Aspects" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" -msgstr "" +msgstr "1. Vous fournissez une URL où vous souhaitez recevoir les notifications" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" -msgstr "" +msgstr "2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -msgstr "" +msgstr "3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" -msgstr "" +msgstr "Un nom convivial pour identifier ce webhook" #: src/components/settings/TwoFactorSettingsCard.tsx:176 msgid "Account password" @@ -250,17 +320,17 @@ msgstr "Action par" msgid "Action On" msgstr "Action sur" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Actions" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Filtres actifs" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Ajouter" @@ -268,16 +338,16 @@ msgstr "Ajouter" msgid "Add additional context (Optional)" msgstr "Ajouter un contexte supplémentaire (Optionnel)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Ajouter tout ce qui s'applique" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Ajouter des conversations au contexte" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription." @@ -285,7 +355,7 @@ msgstr "Ajoutez des termes clés ou des noms propres pour améliorer la qualité msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Ajouter une étiquette" @@ -294,7 +364,7 @@ msgstr "Ajouter une étiquette" msgid "add.tag.filter.modal.title" msgstr "Ajouter une étiquette aux filtres" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Ajouter des étiquettes" @@ -303,62 +373,66 @@ msgstr "Ajouter des étiquettes" msgid "add.tag.filter.modal.add" msgstr "Ajouter aux filtres" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Ajouter à cette conversation" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" -msgstr "" +msgstr "Ajouter un webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" -msgstr "" +msgstr "Ajouter votre premier webhook" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Ajoutées" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "E-mails ajoutés" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "Ajout de <0>{totalCount, plural, one {# conversation} other {# conversations}} au chat" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "Ajout de <0>{totalCount, plural, one {# conversation} other {# conversations}} avec les filtres suivants :" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "Ajout de <0>{totalCount, plural, one {# conversation supplémentaire} other {# conversations supplémentaires}}" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "Ajout de <0>{totalCount, plural, one {# conversation supplémentaire} other {# conversations supplémentaires}} avec les filtres suivants :" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Ajout du contexte :" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Ajout de conversations" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Ajuster la taille de la police de base pour l'interface" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" -msgstr "" +msgstr "Avancé" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Avancé (Astuces et conseils)" @@ -366,7 +440,7 @@ msgstr "Avancé (Astuces et conseils)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Avancé (Astuces et conseils)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Paramètres avancés" @@ -385,14 +459,14 @@ msgstr "Toutes les conversations" #~ msgid "All conversations ready" #~ msgstr "Toutes les conversations sont prêtes" -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "Tous les fichiers ont été téléchargés avec succès." #~ msgid "All Insights" #~ msgstr "Toutes les perspectives" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations" @@ -400,28 +474,28 @@ msgstr "Permettre aux participants d'utiliser le lien pour démarrer de nouvelle msgid "Almost there" msgstr "Presque terminé" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Déjà ajouté à cette conversation" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Déjà dans le contexte" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "Une notification par e-mail sera envoyée à {0} participant{1}. Voulez-vous continuer ?" #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "Une notification par e-mail sera envoyée à {0} participant{1}. Voulez-vous continuer ?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "Une erreur s'est produite." @@ -459,37 +533,41 @@ msgstr "" "Note : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser." #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" -msgstr "" +msgstr "annonces" #: src/components/announcement/AnnouncementDrawerHeader.tsx:23 #~ msgid "Announcements" #~ msgstr "Annonces" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Anonymiser les transcriptions" + #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "Approuver" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Approuvé" #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -msgstr "" +msgstr "Êtes-vous sûr de vouloir supprimer le webhook \"{0}\" ? Cette action ne peut pas être annulée." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée." #~ msgid "Are you sure you want to delete this project?" #~ msgstr "Êtes-vous sûr de vouloir supprimer ce projet ?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible." @@ -499,12 +577,12 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irrév #~ msgid "Are you sure you want to delete this tag?" #~ msgstr "Êtes-vous sûr de vouloir supprimer cette étiquette ?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "Êtes-vous sûr de vouloir terminer la conversation ?" @@ -515,45 +593,49 @@ msgstr "Êtes-vous sûr de vouloir terminer la conversation ?" msgid "Are you sure you want to generate the library? This will take a while and overwrite your current views and insights." msgstr "Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel." #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "Artefact approuvé avec succès !" +#~ msgid "Artefact approved successfully!" +#~ msgstr "Artefact approuvé avec succès !" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "Artefact rechargé avec succès !" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "Artefact rechargé avec succès !" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "Artefact révisé avec succès !" +#~ msgid "Artefact revised successfully!" +#~ msgstr "Artefact révisé avec succès !" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "Artefact mis à jour avec succès !" +#~ msgid "Artefact updated successfully!" +#~ msgstr "Artefact mis à jour avec succès !" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "Artefacts" +#~ msgid "artefacts" +#~ msgstr "Artefacts" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefacts" +#~ msgid "Artefacts" +#~ msgstr "Artefacts" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Demander" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "Demander l'e-mail ?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "Demander le nom ?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation" #: src/routes/project/library/ProjectLibraryAspect.tsx:51 msgid "Aspect" @@ -572,11 +654,15 @@ msgstr "Aspects" #~ msgstr "At least one topic must be selected to enable Dembrane Verify" #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "Sélectionne au moins un sujet pour activer Rends-le concret" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "Sélectionne au moins un sujet pour activer Rends-le concret" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "Sélectionne au moins un sujet pour activer la vérification" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter." @@ -604,83 +690,103 @@ msgstr "Journaux d'audit exportés en CSV" msgid "Audit logs exported to JSON" msgstr "Journaux d'audit exportés en JSON" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Code d'authentification" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Générer automatiquement les titres" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Générer automatiquement les titres" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Généré automatiquement ou saisi manuellement" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Sélection automatique" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Sélection automatique désactivée" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Sélection automatique activée" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Sélectionner les sources à ajouter à la conversation" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" -msgstr "" +msgstr "Enregistrer automatiquement les transcriptions dans votre CRM ou base de données" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." -msgstr "" +msgstr "Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent." #: src/components/conversation/AutoSelectConversations.tsx:96 msgid "Available" msgstr "Disponible" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Retour" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Retour" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Retour" -#~ msgid "Back" -#~ msgstr "Retour" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Retour à la sélection" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Basique (Diapositives tutorielles essentielles)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Paramètres de base" #~ msgid "Begin!" #~ msgstr "Commencer !" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Bêta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Bêta" @@ -690,52 +796,52 @@ msgstr "Bêta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Vue d’ensemble - Thèmes et tendances" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" -msgstr "" +msgstr "Prendre rendez-vous" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Idées de brainstorming" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" -msgstr "" +msgstr "Construire des tableaux de bord personnalisés avec des données de conversation en temps réel" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Annuler" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Annuler" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "Annuler" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "Annuler" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Annuler" @@ -744,7 +850,7 @@ msgstr "Annuler" msgid "add.tag.filter.modal.cancel" msgstr "Annuler" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "Impossible d'ajouter une conversation vide" @@ -755,16 +861,16 @@ msgstr "Impossible d'ajouter une conversation vide" msgid "Changes will be saved automatically" msgstr "Les modifications seront enregistrées automatiquement" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Discussion" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Discussion | Dembrane" @@ -774,7 +880,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Discussions" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Discussions" @@ -789,17 +895,25 @@ msgstr "Vérifier l'accès au microphone" #~ msgid "Check microphone access" #~ msgstr "Vérifier l'accès au microphone" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Vérifiez votre e-mail" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Vérification..." +#~ msgid "Checking..." +#~ msgstr "Vérification..." + +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Choisir un fichier logo" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Choisir parmi vos autres projets" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" -msgstr "" +msgstr "Choisir quand vous souhaitez recevoir les notifications" #: src/components/settings/FontSettingsCard.tsx:74 msgid "Choose your preferred theme for the interface" @@ -808,34 +922,42 @@ msgstr "Choisis le thème que tu préfères pour l’interface" #~ msgid "Citing the following sources" #~ msgstr "Citation des sources suivantes" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Cliquez sur \"Télécharger les fichiers\" lorsque vous êtes prêt à commencer le processus de téléchargement." #: src/routes/project/HostGuidePage.tsx:1385 msgid "Click to edit" -msgstr "" +msgstr "Cliquer pour modifier" #: src/components/conversation/ConversationLinks.tsx:155 msgid "Click to see all {totalCount} conversations" msgstr "Cliquez pour voir les {totalCount} conversations" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Cloner depuis un autre projet" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Cloner depuis le projet" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Cloner le projet" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Cloner le projet" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Fermer" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Fermer" @@ -843,9 +965,9 @@ msgstr "Fermer" msgid "Collection" msgstr "Collection" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" -msgstr "" +msgstr "Cas d'utilisation courants :" #: src/components/chat/templates.ts:42 msgid "Compare & Contrast" @@ -854,16 +976,16 @@ msgstr "Comparer & Contraster" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Comparez et contrastez les éléments suivants fournis dans le contexte." -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Terminé" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Sujets concrets" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Continuer" @@ -872,12 +994,12 @@ msgstr "Continuer" msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Confirmer le mot de passe" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Publier" @@ -885,7 +1007,7 @@ msgstr "Publier" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Connexion aux services de création de rapports..." @@ -903,7 +1025,7 @@ msgstr "Connexion défectueuse" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Contactez votre représentant commercial pour activer cette fonction aujourd'hui !" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Contexte" @@ -916,8 +1038,8 @@ msgstr "Contexte ajouté :" #~ msgstr "Limite de contexte atteinte" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Continuer" @@ -927,7 +1049,7 @@ msgstr "Continuer" #~ msgid "conversation" #~ msgstr "conversation" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Conversation ajoutée à la discussion" @@ -945,7 +1067,7 @@ msgstr "Conversation terminée" #~ msgid "Conversation processing" #~ msgstr "Traitement de la conversation" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Conversation retirée de la discussion" @@ -954,13 +1076,13 @@ msgstr "Conversation retirée de la discussion" msgid "Conversation Status" msgstr "Statut de la conversation" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Détails du statut de la conversation" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" -msgstr "" +msgstr "Tags de conversation" #~ msgid "conversation.accordion.skeleton.title" #~ msgstr "Conversations" @@ -968,11 +1090,11 @@ msgstr "" #~ msgid "conversation.linking_conversations.deleted" #~ msgstr "La source a été supprimée" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "conversations" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Conversations" @@ -986,32 +1108,38 @@ msgstr "Conversations" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Période de repos. Disponible dans {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Copié" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Copié depuis la conversation originale" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" -msgstr "" +msgstr "Copié !" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Copier" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Copier le lien" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Copier le lien pour partager ce rapport" @@ -1020,17 +1148,17 @@ msgstr "Copier le lien pour partager ce rapport" msgid "Copy secret" msgstr "Copier le secret" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Copier le résumé" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "Copier dans le presse-papiers" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" -msgstr "" +msgstr "Copier dans le presse-papiers" #~ msgid "Copy transcript" #~ msgstr "Copier la transcription" @@ -1039,11 +1167,15 @@ msgstr "" msgid "Copying..." msgstr "Copie en cours..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Créer" -#: src/routes/auth/Register.tsx:57 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Créer un nouveau webhook à partir de zéro" + +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Créer un compte" @@ -1056,7 +1188,7 @@ msgstr "Créer une bibliothèque" #~ msgstr "Créer une bibliothèque" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Créer une nouvelle vue" @@ -1064,12 +1196,12 @@ msgstr "Créer une nouvelle vue" #~ msgstr "Créer une nouvelle vue" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Créer un rapport" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Créer une vue" @@ -1077,25 +1209,41 @@ msgstr "Créer une vue" msgid "Create View" msgstr "Créer une vue" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" -msgstr "" +msgstr "Créer un webhook" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Créé le" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Logo actuel" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Personnalisé" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Nom de fichier personnalisé" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Logo personnalisé" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Prompt de titre personnalisé" + #~ msgid "Danger Zone" #~ msgstr "Zone dangereuse" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "URL du tableau de bord (lien direct vers l'aperçu de la conversation)" + #~ msgid "dashboard.dembrane.verify.description" #~ msgstr "Enable this feature to allow participants to create and approve \"verified objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview." @@ -1108,37 +1256,37 @@ msgstr "Nom de fichier personnalisé" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Par défaut" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Supprimer" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Supprimer la discussion" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Supprimer la conversation" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Supprimer le projet" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" -msgstr "" +msgstr "Supprimer le webhook" #: src/components/participant/UserChunkMessage.tsx:68 msgid "Deleted successfully" @@ -1150,8 +1298,8 @@ msgstr "Supprimé avec succès" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane est propulsé par l’IA. Vérifie bien les réponses." @@ -1196,11 +1344,11 @@ msgstr "Désactiver l'authentification à deux facteurs" msgid "Disabled" msgstr "Désactivé" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" -msgstr "" +msgstr "Dois-je avoir cela ?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "Voulez-vous contribuer à ce projet ?" @@ -1208,19 +1356,19 @@ msgstr "Voulez-vous contribuer à ce projet ?" msgid "Do you want to stay in the loop?" msgstr "Voulez-vous rester dans la boucle ?" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Documentation" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Télécharger" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Téléchargez toutes les transcriptions de conversations générées pour ce projet." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Télécharger toutes les transcriptions" @@ -1228,33 +1376,50 @@ msgstr "Télécharger toutes les transcriptions" msgid "Download as" msgstr "Download as" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Télécharger l'audio" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "Télécharger le QR code" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Télécharger la transcription" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Options de téléchargement de la transcription" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers" #: src/routes/project/HostGuidePage.tsx:1397 msgid "Drag to reorder" -msgstr "" +msgstr "Glisser pour réorganiser" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Durée" + +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Néerlandais" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "par exemple : \"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" -msgstr "" +msgstr "par exemple : Notifications Slack, Make Workflow" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" #~ msgid "ECHO" #~ msgstr "ÉCHO" @@ -1268,19 +1433,19 @@ msgstr "" #~ msgid "ECHO!" #~ msgstr "ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" -msgstr "" +msgstr "Modifier" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Modifier la conversation" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Modifier le nom du fichier" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Modifier le projet" @@ -1296,16 +1461,16 @@ msgstr "Modifier le contenu du rapport" msgid "report.editor.description" msgstr "Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" -msgstr "" +msgstr "Modifier le webhook" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Mode d'édition" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "E-mail" @@ -1325,7 +1490,7 @@ msgstr "E-mail vérifié avec succès. Vous serez redirigé vers la page de conn msgid "email@work.com" msgstr "email@travail.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Vide" @@ -1345,30 +1510,34 @@ msgstr "Activer 2FA" #~ msgid "Enable Dembrane Verify" #~ msgstr "Enable Dembrane Verify" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Activer Explorer" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Activer Va plus profond" +#~ msgid "Enable Go deeper" +#~ msgstr "Activer Va plus profond" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Activer Rends-le concret" +#~ msgid "Enable Make it concrete" +#~ msgstr "Activer Rends-le concret" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" -msgstr "" +msgstr "Activer la participation" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Activer les notifications de rapports" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \"objets concrets\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \"Echo\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes." @@ -1376,19 +1545,31 @@ msgstr "Activez cette fonctionnalité pour permettre aux participants de recevoi #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \"ECHO\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \"Explorer\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes." + #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \"Dembrane Réponse\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Activer l'anonymisation des transcriptions" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Activer l'authentification à deux facteurs" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Activer la vérification" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Activé" @@ -1396,39 +1577,39 @@ msgstr "Activé" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "Fin de la liste • Toutes les {0} conversations chargées" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "Anglais" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Entrez un terme clé ou un nom propre" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Entrez un nom pour le nouveau conversation" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Entrez un nom pour votre projet cloné" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" -msgstr "" +msgstr "Entrez une clé secrète" #: src/components/settings/TwoFactorSettingsCard.tsx:374 msgid "Enter a valid code to turn off two-factor authentication." msgstr "Entrez un code valide pour désactiver l'authentification à deux facteurs." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Entrez le nom du fichier (sans extension)" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Entrez un nouveau nom pour la discussion :" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Entrez le code à 6 chiffres de votre application d'authentification." @@ -1444,16 +1625,20 @@ msgstr "Entrez votre mot de passe" msgid "Enter your query" msgstr "Entrez votre requête" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Entré par le participant sur le portail" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Erreur" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Erreur lors du clonage du projet" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Erreur lors de la création du rapport" @@ -1464,91 +1649,104 @@ msgstr "Erreur lors du chargement des annonces" #~ msgid "Error loading insights" #~ msgstr "Erreur lors du chargement des perspectives" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Erreur lors du chargement du projet" #~ msgid "Error loading quotes" #~ msgstr "Erreur lors du chargement des citations" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Une erreur s'est produite" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Erreur lors de la mise à jour du rapport" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Erreur lors du téléchargement de \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" -msgstr "" +msgstr "Événements" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" -msgstr "" +msgstr "Événements à écouter" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Tout semble bon – vous pouvez continuer." #~ msgid "Everything looks good – you can continue." #~ msgstr "Tout semble bon – vous pouvez continuer." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" -msgstr "" +msgstr "Exemple de payload de webhook" #~ msgid "Experimental" #~ msgstr "Expérimental" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Explorer" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Explorer" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Explore les thèmes et les tendances de toutes les conversations" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "Exploration de {conversationCount} conversations" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Exporter" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Échec" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Échec de l'ajout de la conversation à la discussion" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Échec de l'ajout de la conversation à la discussion{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Échec de l'ajout de conversations au contexte" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Échec de l'approbation de l'artefact. Veuillez réessayer." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Échec de l'approbation de l'artefact. Veuillez réessayer." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Échec de l'approbation du résultat. Veuillez réessayer." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Échec de la copie du chat. Veuillez réessayer." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "Échec de la copie de la transcription. Réessaie." @@ -1556,13 +1754,13 @@ msgstr "Échec de la copie de la transcription. Réessaie." msgid "Failed to delete response" msgstr "Échec de la suppression de la réponse" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Échec de la désactivation de la sélection automatique pour cette discussion" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Échec de l'activation de la sélection automatique pour cette discussion" @@ -1574,11 +1772,11 @@ msgstr "Échec de l'activation de la sélection automatique pour cette discussio msgid "Failed to finish conversation. Please try again." msgstr "Échec de la fin de la conversation. Veuillez réessayer." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Échec de la génération de {label}. Veuillez réessayer." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Impossible de générer le résumé. Réessaie plus tard." @@ -1595,9 +1793,9 @@ msgstr "Échec de la récupération des annonces" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Échec du chargement de l’audio ou l’audio n’est pas disponible" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" -msgstr "" +msgstr "Échec du chargement des webhooks" #: src/components/announcement/hooks/index.ts:338 #: src/components/announcement/hooks/index.ts:351 @@ -1613,30 +1811,38 @@ msgstr "Échec du marquage de l'annonce comme lue" msgid "Failed to reconnect. Please try reloading the page." msgstr "Échec de la reconnexion. Veuillez recharger la page." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Échec de la régénération du résumé. Veuillez réessayer plus tard." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Échec du rechargement. Veuillez réessayer." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Échec de la suppression de la conversation de la discussion" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Échec de la suppression de la conversation de la discussion{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Échec de la suppression du logo" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Échec de la transcription de la conversation. Veuillez réessayer." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Échec de la révision de l'artefact. Veuillez réessayer." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Échec de la révision de l'artefact. Veuillez réessayer." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Échec de la révision du résultat. Veuillez réessayer." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1646,43 +1852,51 @@ msgstr "Échec de la révision de l'artefact. Veuillez réessayer." msgid "Failed to stop recording on device change. Please try again." msgstr "Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Échec du téléchargement du logo" + #~ msgid "Failed to verify email status. Please try again." #~ msgstr "Échec de la vérification de l'état de l'e-mail. Veuillez réessayer." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" -msgstr "Feature Bientôt disponible" +msgid "participant.modal.echo.info.title" +msgstr "Fonctionnalité bientôt disponible" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "Le fichier \"{0}\" dépasse la taille maximale de {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "Le fichier \"{0}\" a un format non pris en charge. Seuls les fichiers audio sont autorisés." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "Le fichier \"{0}\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "Le fichier \"{0}\" est trop petit ({1}). La taille minimale est de {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "Taille du fichier: Min {0}, Max {1}, jusqu'à {MAX_FILES} fichiers" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Nom du fichier depuis le fichier téléchargé" + #~ msgid "Filter" #~ msgstr "Filtrer" @@ -1708,12 +1922,12 @@ msgid "participant.button.stop.finish" msgstr "Terminer" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Terminer" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Terminer" @@ -1721,7 +1935,7 @@ msgstr "Terminer" #~ msgstr "Terminer" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "Êtes-vous sûr de vouloir terminer la conversation ?" @@ -1729,8 +1943,8 @@ msgstr "Êtes-vous sûr de vouloir terminer la conversation ?" msgid "Finished" msgstr "Terminé" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "Prénom" @@ -1740,23 +1954,35 @@ msgstr "Prénom" #~ msgid "Follow playback" #~ msgstr "Suivre la lecture" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Taille de la police" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -msgstr "" +msgstr "Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "Français" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" -msgstr "" +msgstr "Transcription complète (lorsqu'elle est disponible)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Générer" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Générer un résumé d'abord" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Générer des perspectives à partir de vos conversations" @@ -1767,70 +1993,69 @@ msgstr "Générer un secret" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Générer un résumé" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Génération du résumé. Patiente un peu..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "Allemand" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." msgstr "Donnez-moi une liste de 5 à 10 sujets qui sont discutés." -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Retour" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Retour" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Va plus profond" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Va plus profond" +#~ msgid "Go deeper" +#~ msgstr "Va plus profond" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Retour à l'accueil" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Aller à la nouvelle conversation" #~ msgid "Grid view" #~ msgstr "Vue en grille" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "A des artefacts vérifiés" -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Aidez-nous à traduire" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Bonjour, {0}" @@ -1838,10 +2063,14 @@ msgstr "Bonjour, {0}" msgid "Hidden" msgstr "Masqué" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Pépite cachée" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Masquer" + #~ msgid "Hide {0}" #~ msgstr "Masquer {0}" @@ -1862,15 +2091,15 @@ msgstr "Masquer les données" msgid "Hide revision data" msgstr "Masquer les données de révision" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Accueil" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" -msgstr "" +msgstr "Comment ça marche :" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -1881,7 +2110,7 @@ msgstr "" "* À quoi ressemble le succès" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "Je comprends" @@ -1906,21 +2135,21 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "Valide cet artefact si tout est bon pour toi." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#~ msgstr "" +#~ msgstr "Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -msgstr "" +msgstr "Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -msgstr "" +msgstr "Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison." #~ msgid "In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view." #~ msgstr "Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue." @@ -1928,7 +2157,7 @@ msgstr "" #~ msgid "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" #~ msgstr "En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat" -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Inclure le lien vers le portail dans le rapport" @@ -1955,7 +2184,7 @@ msgstr "Perspectives" msgid "Invalid code. Please request a new one." msgstr "Code invalide. Veuillez en demander un nouveau." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Identifiants invalides." @@ -1982,21 +2211,20 @@ msgstr "Il semble que la bibliothèque n'est pas disponible pour votre compte. V #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet." +msgid "participant.outcome.error.description" +msgstr "Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italien" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Rejoindre {0} sur Dembrane" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Rejoindre {0} sur Dembrane" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -2009,12 +2237,12 @@ msgstr "Un instant" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Langue" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Nom" @@ -2029,13 +2257,13 @@ msgstr "Dernièrement enregistré le {0}" msgid "Last Updated" msgstr "Dernière mise à jour" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" -msgstr "" +msgstr "En savoir plus sur les webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" -msgstr "" +msgstr "Laisser vide pour conserver l'existant" #: src/components/chat/TemplatesModal.tsx:127 msgid "Let us know!" @@ -2046,7 +2274,7 @@ msgstr "Laissez-nous savoir!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Bibliothèque" @@ -2085,19 +2313,19 @@ msgstr "Lien" #~ msgstr "Direct" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Niveau audio en direct:" #~ msgid "Live audio level:" #~ msgstr "Niveau audio en direct:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Vue en direct" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Chargement" @@ -2114,7 +2342,7 @@ msgstr "Chargement des actions..." msgid "participant.concrete.loading.artefact" msgstr "Chargement de l'artefact" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Chargement des journaux d'audit…" @@ -2122,70 +2350,68 @@ msgstr "Chargement des journaux d'audit…" msgid "Loading collections..." msgstr "Chargement des collections..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Chargement des sujets concrets…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Chargement des microphones..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Chargement de la transcription..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "chargement..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Chargement..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Chargement…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Connexion" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Connexion | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Se connecter en tant qu'utilisateur existant" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo supprimé" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo mis à jour avec succès" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Déconnexion" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Plus long en premier" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Rends-le concret" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Rends-le concret" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Marquer toutes comme lues" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Marquer comme lue" @@ -2206,47 +2432,47 @@ msgstr "L'accès au microphone est toujours refusé. Veuillez vérifier vos para #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Mode" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "Plus de templates" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Déplacer" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Déplacer" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Déplacer vers un autre projet" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Déplacer vers un projet" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Nom" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Nom A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" -msgstr "" +msgstr "Le nom est requis" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Nom Z-A" @@ -2254,9 +2480,9 @@ msgstr "Nom Z-A" msgid "New" msgstr "Nouveau" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" -msgstr "Nom du nouveau conversation" +msgstr "Nom de la nouvelle conversation" #. js-lingui-explicit-id #: src/components/project/ProjectAnalysisRunStatus.tsx:83 @@ -2271,32 +2497,32 @@ msgstr "De nouvelles conversations ont été ajoutées depuis la génération de msgid "New Password" msgstr "Nouveau mot de passe" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "Nouveau projet" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Plus récent en premier" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "Prêt à commencer" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Suivant" @@ -2304,7 +2530,7 @@ msgstr "Suivant" #~ msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "Non" @@ -2312,16 +2538,16 @@ msgstr "Non" msgid "No actions found" msgstr "Aucune action trouvée" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "Aucune annonce disponible" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "Aucun journal d'audit ne correspond aux filtres actuels." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \"Demander\"." @@ -2332,11 +2558,11 @@ msgstr "Aucune discussion trouvée. Commencez une discussion en utilisant le bou msgid "No collections found" msgstr "Aucune collection trouvée" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "Aucun sujet concret disponible." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "Aucun contenu" @@ -2356,16 +2582,16 @@ msgstr "Aucune conversation disponible pour créer la bibliothèque" msgid "No conversations found." msgstr "Aucune conversation trouvée." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "Aucune conversation" @@ -2375,16 +2601,16 @@ msgstr "Aucune conversation" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "Aucun projet trouvé {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "Aucun projet trouvé pour ce terme de recherche" @@ -2394,34 +2620,33 @@ msgstr "Aucun projet trouvé pour ce terme de recherche" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "Aucun rapport trouvé" #~ msgid "No resources found." #~ msgstr "Aucune ressource trouvée." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "Aucun résultat" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "Aucune étiquette trouvée" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "Aucune transcription disponible" #~ msgid "No transcript available for this conversation." #~ msgstr "Aucune transcription disponible pour cette conversation." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard." @@ -2432,23 +2657,27 @@ msgstr "Aucune transcription n'existe pour cette conversation. Veuillez vérifie #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "Pas de tutoriel (uniquement les déclarations de confidentialité)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc)." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "Aucun sujet de vérification n'est configuré pour ce projet." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" -msgstr "" +msgstr "Aucun webhook configuré" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "Aucun webhook trouvé" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "Non ajoutées" @@ -2456,32 +2685,36 @@ msgstr "Non ajoutées" msgid "Not available" msgstr "Non disponible" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Notifier les participants lorsqu'un rapport est publié." + #~ msgid "Now" #~ msgstr "Maintenant" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Plus ancien en premier" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Une fois que tu as discuté, clique sur « réviser » pour voir {objectLabel} changer pour refléter ta discussion." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Une fois que tu as reçu {objectLabel}, lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "En cours" #~ msgid "Ongoing" #~ msgstr "En cours" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Conversations en cours" @@ -2504,13 +2737,17 @@ msgstr "Ouvrir" #~ msgid "Open Documentation" #~ msgstr "Ouvrir la documentation" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "Ouvert à la participation ?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Ouvrir le guide" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" -msgstr "" +msgstr "Ouvrir le guide de l'hôte" #. js-lingui-explicit-id #: src/components/participant/PermissionErrorModal.tsx:59 @@ -2520,30 +2757,62 @@ msgstr "Ouvrir le guide de dépannage" #~ msgid "Open troubleshooting guide" #~ msgstr "Ouvrir le guide de dépannage" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Ouvrez votre application d'authentification et entrez le code actuel à six chiffres." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" -msgstr "" +msgstr "Optionnel" + +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Champ optionnel sur la page de démarrage" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Champ optionnel sur la page de remerciements" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Options" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Résultat approuvé avec succès !" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Résultat rechargé avec succès !" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Résultat revu avec succès !" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Résultat mis à jour !" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "résultats" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Résultats" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Aperçu" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Vue d’ensemble - Thèmes et patterns" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Contenu de la page" @@ -2551,22 +2820,30 @@ msgstr "Contenu de la page" msgid "Page not found" msgstr "Page non trouvée" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Titre de la page" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Participant" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Email du participant" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Emails du participant" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Fonctionnalités participant" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" -msgstr "" +msgstr "Nom et email du participant" #~ msgid "participant.button.echo" #~ msgstr "Echo" @@ -2676,22 +2953,22 @@ msgstr "" #~ msgid "participant.verify.selection.title" #~ msgstr "What do you want to verify?" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Les participants pourront sélectionner des étiquettes lors de la création de conversations" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Mot de passe" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Protéger le portail avec un mot de passe (demande de fonctionnalité)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Les mots de passe ne correspondent pas" @@ -2699,7 +2976,7 @@ msgstr "Les mots de passe ne correspondent pas" #~ msgid "Pause" #~ msgstr "Pause" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Mettre en pause la lecture" @@ -2707,19 +2984,19 @@ msgstr "Mettre en pause la lecture" msgid "Pending" msgstr "En attente" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Choisis l’approche qui correspond à ta question" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Veuillez autoriser l'accès au microphone pour démarrer le test." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Veuillez autoriser l'accès au microphone pour démarrer le test." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations." @@ -2730,26 +3007,25 @@ msgstr "Veuillez vérifier vos entrées pour les erreurs." #~ msgid "Please do not close your browser" #~ msgstr "Veuillez ne fermer votre navigateur" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Veuillez activer la participation pour activer le partage" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Veuillez entrer une adresse e-mail valide." #~ msgid "Please keep this screen lit up (black screen = not recording)" #~ msgstr "Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)" -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Veuillez vous connecter pour continuer." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -2762,18 +3038,18 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Veuillez enregistrer votre réponse en cliquant sur le bouton \"Démarrer l'enregistrement\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Veuillez sélectionner une langue pour votre rapport" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Veuillez sélectionner une langue pour votre rapport mis à jour" #~ msgid "Please select at least one source" #~ msgstr "Veuillez sélectionner au moins une source" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Sélectionne des conversations dans la barre latérale pour continuer" @@ -2789,21 +3065,21 @@ msgstr "Sélectionne des conversations dans la barre latérale pour continuer" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Veuillez attendre {timeStr} avant de demander une autre réponse." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Bibliothèque en cours de traitement" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport." @@ -2811,20 +3087,20 @@ msgstr "Veuillez patienter pendant que nous mettons à jour votre rapport. Vous msgid "Please wait while we verify your email address." msgstr "Veuillez patienter pendant que nous vérifions votre adresse e-mail." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Contenu du Portail" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Éditeur de Portail" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Propulsé par" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Préparation de tes conversations... Ça peut prendre un moment." @@ -2832,11 +3108,15 @@ msgstr "Préparation de tes conversations... Ça peut prendre un moment." msgid "Preparing your experience" msgstr "Préparation de votre expérience" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Aperçu : Le rapide brun fox saute sur le chien paresseux." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" -msgstr "" +msgstr "Imprimer / Enregistrer PDF" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Imprimer ce rapport" @@ -2844,12 +3124,12 @@ msgstr "Imprimer ce rapport" msgid "Privacy Statements" msgstr "Déclarations de confidentialité" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Continuer" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Continuer" @@ -2860,7 +3140,7 @@ msgstr "Continuer" #~ msgstr "Traitement" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "Traitement de <0>{totalCount, plural, one {# conversation} other {# conversations}} et ajout à votre chat" @@ -2873,12 +3153,12 @@ msgstr "Traitement de <0>{totalCount, plural, one {# conversation} other {# conv #~ msgid "Processing Transcript" #~ msgstr "Traitement de la transcription" -#: src/components/report/UpdateReportModalButton.tsx:73 -#: src/components/report/CreateReportForm.tsx:51 +#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/CreateReportForm.tsx:52 msgid "Processing your report..." msgstr "Traitement de votre rapport..." -#: src/components/conversation/RetranscribeConversation.tsx:127 +#: src/components/conversation/RetranscribeConversation.tsx:143 msgid "Processing your retranscription request..." msgstr "Traitement de votre demande de retranscription..." @@ -2886,19 +3166,23 @@ msgstr "Traitement de votre demande de retranscription..." msgid "Project Created" msgstr "Projet créé" +#: src/components/conversation/RetranscribeConversation.tsx:172 +msgid "Project default: enabled. This will replace personally identifiable information with ." +msgstr "Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec ." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Bibliothèque de projet | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Nom du projet" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" -msgstr "" +msgstr "Nom et ID du projet" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "Le nom du projet doit comporter au moins 4 caractères" @@ -2906,26 +3190,26 @@ msgstr "Le nom du projet doit comporter au moins 4 caractères" msgid "Project not found" msgstr "Projet introuvable" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Aperçu du projet | Dembrane" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Paramètres du projet" #~ msgid "project.sidebar.chat.end.description" #~ msgstr "Fin de la liste • Toutes les {0} conversations chargées" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Projets" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Projets | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Accueil des projets" @@ -2933,65 +3217,69 @@ msgstr "Accueil des projets" msgid "Provide an overview of the main topics and recurring themes" msgstr "Fournissez un aperçu des sujets principaux et des thèmes récurrents" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Publier" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Publié" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Récupère les citations les plus marquantes de cette session" #~ msgid "Quotes" #~ msgstr "Citations" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Réutiliser les paramètres d'un webhook existant" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Lire à haute voix" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "Prêt à commencer" #~ msgid "Ready to Begin?" #~ msgstr "Prêt à commencer ?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." -msgstr "" +msgstr "Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent." #: src/components/settings/TwoFactorSettingsCard.tsx:338 msgid "Recommended apps" msgstr "Applications recommandées" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Reconnecter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Enregistrer" #~ msgid "Record" #~ msgstr "Enregistrer" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Enregistrer une autre conversation" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Enregistrement interrompu" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Enregistrement en pause" @@ -3014,12 +3302,7 @@ msgstr "Thèmes récurrents" msgid "References" msgstr "Références" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Refine" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Actualiser" @@ -3030,24 +3313,24 @@ msgstr "Actualiser les journaux d'audit" #~ msgid "Regenerate Library" #~ msgstr "Régénérer la bibliothèque" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Régénérer le résumé" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Régénération de l'artefact" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Régénération du résultat" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Régénération du résumé. Patiente un peu..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "S'enregistrer | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "S'enregistrer en tant qu'utilisateur nouveau" @@ -3055,7 +3338,7 @@ msgstr "S'enregistrer en tant qu'utilisateur nouveau" #~ msgstr "Pertinence" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Recharger la page" @@ -3065,44 +3348,48 @@ msgid "participant.button.reload" msgstr "Recharger la page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Recharger la page" #~ msgid "Reload Page" #~ msgstr "Recharger la page" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Supprimer" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "Supprimer l'e-mail" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Supprimer le fichier" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Supprimer de cette conversation" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Renommer" #~ msgid "Rename" #~ msgstr "Renommer" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Prompt de réponse" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Rapport" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Signaler un problème" @@ -3111,11 +3398,11 @@ msgstr "Signaler un problème" msgid "Report Created - {0}" msgstr "Rapport créé - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Notifications de rapports" @@ -3133,25 +3420,29 @@ msgstr "Demander l'accès" msgid "Request Access" msgstr "Demander l'accès" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Demander le Réinitialisation du Mot de Passe" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Demander le Réinitialisation du Mot de Passe | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Accès au microphone en cours..." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Demande d'accès au microphone pour détecter les appareils disponibles..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Requiert \"Demander l'email ?\" pour être activé" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" -msgstr "" +msgstr "Réinitialiser" #~ msgid "Reset All Options" #~ msgstr "Réinitialiser toutes les options" @@ -3165,8 +3456,8 @@ msgstr "Réinitialiser le Mot de Passe" msgid "Reset Password | Dembrane" msgstr "Réinitialiser le Mot de Passe | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Réinitialiser aux paramètres par défaut" @@ -3181,27 +3472,27 @@ msgstr "Reprendre" #~ msgid "Resume" #~ msgstr "Reprendre" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Rétranscrire" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Rétranscrire la conversation" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Rétranscrire la conversation" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Réessayer" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Réessayer le téléchargement" @@ -3209,7 +3500,7 @@ msgstr "Réessayer le téléchargement" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Examiner les fichiers avant le téléchargement" @@ -3218,33 +3509,33 @@ msgid "Review processing status for every conversation collected in this project msgstr "Examiner le statut de traitement pour chaque conversation collectée dans ce projet." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "Réviser" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Révision #{revisionNumber}" #: src/routes/project/HostGuidePage.tsx:1391 msgid "Right-click to highlight" -msgstr "" +msgstr "Cliquez avec le bouton droit pour mettre en évidence" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Lignes par page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "Enregistrer" #~ msgid "Save" #~ msgstr "Enregistrer" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" -msgstr "" +msgstr "Enregistrer les modifications" #: src/components/form/SaveStatus.tsx:31 msgid "Save Error!" @@ -3264,11 +3555,11 @@ msgid "Scroll to bottom" msgstr "Défiler vers le bas" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Rechercher" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Rechercher" @@ -3276,20 +3567,20 @@ msgstr "Rechercher" msgid "Search conversations" msgstr "Rechercher des conversations" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Rechercher des projets" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Rechercher des projets" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Rechercher des projets..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Rechercher des tags" @@ -3298,10 +3589,14 @@ msgid "Search templates..." msgstr "Rechercher des templates..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Texte de recherche :" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Rechercher des webhooks..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Recherché parmi les sources les plus pertinentes" @@ -3310,9 +3605,9 @@ msgstr "Recherché parmi les sources les plus pertinentes" msgid "Searching through the most relevant sources" msgstr "Recherche parmi les sources les plus pertinentes" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" -msgstr "" +msgstr "Secret" #: src/components/settings/TwoFactorSettingsCard.tsx:436 msgid "Secret copied" @@ -3321,73 +3616,77 @@ msgstr "Secret copié" #~ msgid "See conversation status details" #~ msgstr "Voir les détails du statut de la conversation" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "À bientôt" #~ msgid "Segments" #~ msgstr "Segments" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Sélectionner un microphone" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Sélectionner un webhook à cloner" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Tout sélectionner" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Tout sélectionner ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Sélectionner tous les résultats" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" -msgstr "" +msgstr "Sélectionner au moins un événement" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Sélectionner les fichiers audio à télécharger" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Sélectionne des conversations et trouve des citations précises" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Sélectionne des conversations dans la barre latérale" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Sélectionner un projet" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Sélectionner les étiquettes" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Sélectionnez le type de retour ou de participation que vous souhaitez encourager." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Sélectionner le tutoriel" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret »." +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour la vérification." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Sélectionner votre microphone:" @@ -3395,65 +3694,65 @@ msgstr "Sélectionner votre microphone:" #~ msgstr "Sélectionner votre microphone:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Fichiers sélectionnés ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Microphone sélectionné" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Sélection trop grande" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Sélection trop grande. Certaines conversations n'ont pas été ajoutées." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Envoyer" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" -msgstr "" +msgstr "Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées" #~ msgid "Sentiment" #~ msgstr "Sentiment" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Nom de la Séance" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Configuration de votre premier projet" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Paramètres" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Paramètres" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Paramètres | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Partager" +#~ msgid "Share" +#~ msgstr "Partager" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Partager ce rapport" @@ -3461,25 +3760,29 @@ msgstr "Partager ce rapport" msgid "Share your details here" msgstr "Partager vos informations ici" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Partager votre voix" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Partager votre voix en scanant le code QR ci-dessous." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Plus court en premier" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Afficher" + #~ msgid "Show {0}" #~ msgstr "Afficher {0}" #~ msgid "Show all" #~ msgstr "Afficher tout" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Afficher le lecteur audio" @@ -3494,11 +3797,11 @@ msgstr "Afficher les données" msgid "Show IP addresses" msgstr "Afficher les adresses IP" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Afficher moins" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Afficher plus" @@ -3511,14 +3814,14 @@ msgstr "Afficher les références" msgid "Show revision data" msgstr "Afficher les données de révision" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Afficher la chronologie dans le rapport (demande de fonctionnalité)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Afficher les horodatages (expérimental)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "Affichage de {displayFrom}–{displayTo} sur {totalItems} entrées" @@ -3537,35 +3840,35 @@ msgstr "Passer" #~ msgid "Skip data privacy slide (Host manages consent)" #~ msgstr "Passer la carte de confidentialité (L'hôte gère la consentement)" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Passer la carte de confidentialité (L'hôte gère la base légale)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Ignorées car la sélection était trop grande." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Certaines peuvent être ignorées (pas de transcription ou sélection trop grande)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Une erreur s'est produite" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment." @@ -3585,16 +3888,16 @@ msgstr "Une erreur s'est produite lors de la génération du secret." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Une erreur s'est produite lors de l'envoi du fichier : {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste." +msgid "participant.explore.generic.error.message" +msgstr "Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Une erreur s'est produite. Veuillez réessayer." @@ -3603,8 +3906,8 @@ msgstr "Une erreur s'est produite. Veuillez réessayer." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Trier" @@ -3616,28 +3919,32 @@ msgstr "Source {0}" #~ msgid "Sources:" #~ msgstr "Sources:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Espagnol" #~ msgid "Speaker" #~ msgstr "Orateur" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Contexte spécifique" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Détails précis" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Détails précis - Conversations sélectionnées" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Commencer de zéro" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Commencer une nouvelle conversation" @@ -3660,12 +3967,12 @@ msgstr "Recommencer" msgid "Status" msgstr "Statut" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Arrêter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Arrêter" @@ -3673,19 +3980,19 @@ msgstr "Arrêter" msgid "Strategic Planning" msgstr "Planification Stratégique" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Soumettre" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Envoyer" #~ msgid "Submitted via text input" #~ msgstr "Ingereed via tekstinput" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Succès" @@ -3698,38 +4005,38 @@ msgstr "Suggéré:" msgid "Summarize" msgstr "Résumer" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Résume les principaux enseignements de mes entretiens" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Résume cet entretien en un article partageable" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Résumé" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" -msgstr "" +msgstr "Résumé (lorsqu'il est disponible)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Résumé généré." #~ msgid "Summary not available yet" #~ msgstr "Résumé non disponible pour le moment" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Résumé régénéré." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "Le résumé sera disponible une fois la conversation transcrite." -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -3742,11 +4049,11 @@ msgstr "Passer à la saisie de texte" msgid "System" msgstr "Système" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Étiquettes" @@ -3763,7 +4070,7 @@ msgstr "Take some time to create an outcome that makes your contribution concret msgid "participant.refine.make.concrete.description" msgstr "Take some time to create an outcome that makes your contribution concrete." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Template appliqué" @@ -3771,27 +4078,27 @@ msgstr "Template appliqué" msgid "Templates" msgstr "Modèles" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" -msgstr "" +msgstr "Tester le webhook" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Texte" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "Merci pour votre participation !" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Contenu de la page Merci" -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" msgstr "Merci !" -#: src/routes/auth/Login.tsx:141 +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification." @@ -3803,7 +4110,7 @@ msgid "The code didn't work, please try again." msgstr "Le code n'a pas fonctionné, veuillez réessayer." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support." @@ -3815,9 +4122,9 @@ msgstr "La conversation n'a pas pu être chargée. Veuillez réessayer ou contac #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." -msgstr "" +msgstr "L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur)." #: src/components/chat/Sources.tsx:22 msgid "The following conversations were automatically added to the context" @@ -3829,11 +4136,11 @@ msgstr "Les conversations suivantes ont été automatiquement ajoutées au conte #~ msgid "the project library." #~ msgstr "la bibliothèque du projet." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "Le résumé est en cours de génération. Attends qu’il soit disponible." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "Le résumé est en cours de régénération. Attends qu’il soit disponible." @@ -3846,23 +4153,27 @@ msgstr "Le résumé est en cours de régénération. Attends qu’il soit dispon #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Thème" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support." @@ -3877,7 +4188,7 @@ msgstr "Il y avait une erreur lors de la vérification de votre e-mail. Veuillez #~ msgstr "Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "Ces conversations ont été exclues en raison de transcriptions manquantes." @@ -3885,7 +4196,7 @@ msgstr "Ces conversations ont été exclues en raison de transcriptions manquant msgid "These default view templates will be generated when you create your first library." msgstr "Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Réflexion en cours..." @@ -3905,7 +4216,7 @@ msgstr "Cette conversation est une copie de" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "Cette e-mail est déjà dans la liste." @@ -3913,17 +4224,17 @@ msgstr "Cette e-mail est déjà dans la liste." #~ msgstr "Cette e-mail est déjà abonnée aux notifications." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "Cette fonctionnalité sera disponible dans {remainingTime} secondes." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." -msgstr "" +msgstr "C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée." #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:209 @@ -3939,38 +4250,38 @@ msgstr "Bibliothèque" #~ msgid "This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header." #~ msgstr "Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "Cette langue sera utilisée pour le Portail du participant." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "Cette page est affichée après que le participant ait terminé la conversation." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel." #~ msgid "This project library was generated on" #~ msgstr "Cette bibliothèque de projet a été générée le" -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager." -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "Ce rapport n'est pas encore disponible. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "Ce rapport a été ouvert par {0} personnes" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "Ce titre est affiché aux participants lorsqu'ils commencent une conversation" @@ -3978,11 +4289,11 @@ msgstr "Ce titre est affiché aux participants lorsqu'ils commencent une convers msgid "This will clear your current input. Are you sure?" msgstr "Cela effacera votre entrée actuelle. Êtes-vous sûr ?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée." @@ -3992,7 +4303,7 @@ msgid "add.tag.filter.modal.info" msgstr "Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "Cela ne prendra que quelques instants" @@ -4001,7 +4312,7 @@ msgstr "Cela ne prendra que quelques instants" msgid "participant.concrete.loading.artefact.description" msgstr "Cela ne prendra qu'un instant" -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "Cela remplacera les informations personnelles identifiables avec ." @@ -4012,35 +4323,43 @@ msgstr "Cela remplacera les informations personnelles identifiables avec {existingContextCount, plural, one {# conversation} other {# conversations}} à ce chat." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "Vous avez déjà ajouté toutes les conversations liées à ceci" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "Vous avez changé votre microphone. Veuillez cliquer sur \"Continuer\", pour continuer la session." @@ -4594,25 +4956,25 @@ msgstr "Vous avez changé votre microphone. Veuillez cliquer sur \"Continuer\", msgid "You have successfully unsubscribed." msgstr "Vous avez été désinscrit avec succès." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "Vous pouvez également choisir d'enregistrer une autre conversation." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "Vous semblez être hors ligne, veuillez vérifier votre connexion internet" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "Tu recevras bientôt {objectLabel} pour les rendre concrets." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "Ton approbation nous aide à comprendre ce que tu penses vraiment !" @@ -4629,11 +4991,11 @@ msgstr "Vos entrées seront automatiquement enregistrées." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Vos réponses" @@ -4642,7 +5004,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Vos vues" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 5a0fe3c0..8463d74c 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Annonces\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Disponible\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"iH8pgl\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Créé le\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo Dembrane\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Dembrane Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Néerlandais\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"ycR/52\":[\"Activer Dembrane Echo\"],\"mKGCnZ\":[\"Activer Dembrane ECHO\"],\"Dh2kHP\":[\"Activer la réponse Dembrane\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"Dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom du nouveau conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Options\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"participant.button.refine\":[\"Refine\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"4LFZoj\":[\"Vérifier le code\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « Dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur Dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur Dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction Dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo Dembrane\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Dembrane Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"ycR/52\":[\"Activer Dembrane Echo\"],\"mKGCnZ\":[\"Activer Dembrane ECHO\"],\"Dh2kHP\":[\"Activer la réponse Dembrane\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"Dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo Dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo Dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"participant.echo.verify\":[\"Vérifier\"],\"dashboard.dembrane.verify.title\":[\"dembrane Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « Dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur Dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur Dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction Dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index ff5f2b14..070ff821 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -39,17 +39,17 @@ msgid "Something went wrong" msgstr "Something went wrong" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "We're preparing your workspace." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Preparing your dashboard" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Welcome back" @@ -93,11 +93,6 @@ msgstr "Welcome back" #~ msgid "participant.modal.stop.message" #~ msgstr "Are you sure you want to finish the conversation?" -#. js-lingui-explicit-id -#: src/routes/participant/ParticipantConversation.tsx:583 -#~ msgid "participant.button.echo" -#~ msgstr "ECHO" - #. js-lingui-explicit-id #: src/routes/participant/ParticipantConversation.tsx:658 #~ msgid "participant.button.is.recording.echo" @@ -163,11 +158,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.action.button.cancel" #~ msgstr "Cancel" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:705 -#~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" - #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:718 #~ msgid "dashboard.dembrane.verify.description" @@ -243,11 +233,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.action.button.save" #~ msgstr "Save" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:758 -#~ msgid "dashboard.dembrane.verify.topic.select" -#~ msgstr "Select which topics participants can use for verification." - #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 #~ msgid "participant.echo.generic.error.message" @@ -314,11 +299,81 @@ msgstr "Welcome back" #~ msgstr "We saved your recording up to <0>{formattedDuration} but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "\"Go deeper\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "\"Make it concrete\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Refine\" available soon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Feature available soon" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Go deeper" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Make it concrete" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Make it concrete" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Refine" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Regenerating the artefact" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Select which topics participants can use for \"Make it concrete\"." + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "Unable to Load Artefact" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr " Generating library can take up to an hour." -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr " Submit" @@ -331,42 +386,42 @@ msgstr " Unsubscribe from Notifications" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "\"Go deeper\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" available soon" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "\"Make it concrete\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Explore\" available soon" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Refine\" available soon" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Verify\" available soon" #: src/components/conversation/ConversationAccordion.tsx:413 #~ msgid "(for enhanced audio processing)" #~ msgstr "(for enhanced audio processing)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# tag} other {# tags}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Tag:} other {Tags:}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -377,7 +432,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} added" @@ -397,11 +452,11 @@ msgstr "{0} Conversations • Edited {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} not added" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} selected" @@ -414,7 +469,7 @@ msgstr "{conversationCount} selected" #~ msgstr "{diffInHours}h ago" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Currently # conversation is ready to be analyzed.} other {Currently # conversations are ready to be analyzed.}}" @@ -422,7 +477,7 @@ msgstr "{finishedConversationsCount, plural, one {Currently # conversation is re #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} minutes and {seconds} seconds" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} reading now" @@ -431,7 +486,7 @@ msgstr "{readingNow} reading now" #~ msgstr "{seconds} seconds" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{unfinishedConversationsCount} still processing." @@ -456,19 +511,19 @@ msgstr "+{hiddenCount} conversations" msgid "0 Aspects" msgstr "0 Aspects" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" msgstr "1. You provide a URL where you want to receive notifications" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" msgstr "2. When a conversation event happens, we automatically send the conversation data to your URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" msgstr "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" @@ -484,17 +539,17 @@ msgstr "Action By" msgid "Action On" msgstr "Action On" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Actions" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Active filters" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Add" @@ -502,16 +557,16 @@ msgstr "Add" msgid "Add additional context (Optional)" msgstr "Add additional context (Optional)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Add all that apply" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Add Conversations to Context" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Add key terms or proper nouns to improve transcript quality and accuracy." @@ -519,7 +574,7 @@ msgstr "Add key terms or proper nouns to improve transcript quality and accuracy msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Add new recordings to this project. Files you upload here will be processed and appear in conversations." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Add Tag" @@ -528,7 +583,7 @@ msgstr "Add Tag" msgid "add.tag.filter.modal.title" msgstr "Add Tag to Filters" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Add Tags" @@ -537,62 +592,66 @@ msgstr "Add Tags" msgid "add.tag.filter.modal.add" msgstr "Add to Filters" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Add to this chat" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" msgstr "Add Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" msgstr "Add Your First Webhook" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Added" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "Added emails" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "Adding <0>{totalCount, plural, one {# conversation} other {# conversations}} to the chat" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "Adding <0>{totalCount, plural, one {# conversation} other {# conversations}} with the following filters:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "Adding <0>{totalCount, plural, one {# more conversation} other {# more conversations}}" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "Adding <0>{totalCount, plural, one {# more conversation} other {# more conversations}} with the following filters:" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Adding Context:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Adding Conversations" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Adjust the base font size for the interface" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" msgstr "Advanced" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Advanced (Tips and best practices)" @@ -600,7 +659,7 @@ msgstr "Advanced (Tips and best practices)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Advanced (Tips and tricks)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Advanced Settings" @@ -620,7 +679,7 @@ msgstr "All Conversations" #~ msgid "All conversations ready" #~ msgstr "All conversations ready" -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "All files were uploaded successfully." @@ -628,7 +687,7 @@ msgstr "All files were uploaded successfully." #~ msgid "All Insights" #~ msgstr "All Insights" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Allow participants using the link to start new conversations" @@ -636,17 +695,17 @@ msgstr "Allow participants using the link to start new conversations" msgid "Almost there" msgstr "Almost there" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Already added to this chat" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Already in context" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "An email notification will be sent to {0} participant{1}. Do you want to proceed?" @@ -654,11 +713,11 @@ msgstr "An email notification will be sent to {0} participant{1}. Do you want to #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "An error occurred while loading the Portal. Please contact the support team." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "An error occurred." @@ -697,34 +756,38 @@ msgstr "" "Note: If the similarities/differences are too superficial, let me know we need more complex material to analyze." #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" -msgstr "" +msgstr "Announcements" #: src/components/announcement/AnnouncementDrawerHeader.tsx:23 #~ msgid "Announcements" #~ msgstr "Announcements" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Anonymize Transcripts" + #: src/components/participant/ParticipantInitiateForm.tsx:49 #~ msgid "Anonymous Participant" #~ msgstr "Anonymous Participant" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "Approve" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Approved" #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." msgstr "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "Are you sure you want to delete this conversation? This action cannot be undone." @@ -732,7 +795,7 @@ msgstr "Are you sure you want to delete this conversation? This action cannot be #~ msgid "Are you sure you want to delete this project?" #~ msgstr "Are you sure you want to delete this project?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "Are you sure you want to delete this project? This action cannot be undone." @@ -744,12 +807,12 @@ msgstr "Are you sure you want to delete this project? This action cannot be undo #~ msgid "Are you sure you want to delete this tag?" #~ msgstr "Are you sure you want to delete this tag?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "Are you sure you want to finish the conversation?" @@ -765,45 +828,49 @@ msgstr "Are you sure you want to generate the library? This will take a while an #~ msgid "Are you sure you want to generate the library? This will take a while." #~ msgstr "Are you sure you want to generate the library? This will take a while." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "Are you sure you want to regenerate the summary? You will lose the current summary." #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "Artefact approved successfully!" +#~ msgid "Artefact approved successfully!" +#~ msgstr "Artefact approved successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "Artefact reloaded successfully!" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "Artefact reloaded successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "Artefact revised successfully!" +#~ msgid "Artefact revised successfully!" +#~ msgstr "Artefact revised successfully!" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "Artefact updated successfully!" +#~ msgid "Artefact updated successfully!" +#~ msgstr "Artefact updated successfully!" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "artefacts" +#~ msgid "artefacts" +#~ msgstr "artefacts" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefacts" +#~ msgid "Artefacts" +#~ msgstr "Artefacts" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Ask" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "Ask for Email?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "Ask for Name?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Ask participants to provide their name when they start a conversation" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Ask participants to provide their name when they start a conversation" #: src/routes/project/library/ProjectLibraryAspect.tsx:51 msgid "Aspect" @@ -824,11 +891,15 @@ msgstr "Aspects" #~ msgstr "At least one topic must be selected to enable Dembrane Verify" #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "At least one topic must be selected to enable Make it concrete" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "At least one topic must be selected to enable Make it concrete" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "At least one topic must be selected to enable Verify" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect." @@ -862,21 +933,33 @@ msgstr "Audit logs exported to CSV" msgid "Audit logs exported to JSON" msgstr "Audit logs exported to JSON" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Authenticator code" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Auto-generate titles" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Auto-generate Titles" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Auto-generated or enter manually" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Auto-select" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Auto-select disabled" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Auto-select enabled" @@ -884,15 +967,19 @@ msgstr "Auto-select enabled" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Auto-select sources to add to the chat" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Automatically includes relevant conversations for analysis without manual selection" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" msgstr "Automatically save transcripts to your CRM or database" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." msgstr "Automatically send conversation data to your other tools and services when events occur." @@ -900,30 +987,31 @@ msgstr "Automatically send conversation data to your other tools and services wh msgid "Available" msgstr "Available" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Back" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Back" -#: src/components/participant/ParticipantOnboardingCards.tsx:273 -#~ msgid "Back" -#~ msgstr "Back" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Back to Selection" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Basic (Essential tutorial slides)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Basic Settings" @@ -931,17 +1019,19 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Beta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -954,52 +1044,52 @@ msgstr "Beta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Big Picture - Themes & patterns" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" msgstr "Book a call" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Brainstorm Ideas" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" msgstr "Build custom dashboards with real-time conversation data" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Cancel" @@ -1008,7 +1098,7 @@ msgstr "Cancel" msgid "add.tag.filter.modal.cancel" msgstr "Cancel" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "Cannot add empty conversation" @@ -1020,16 +1110,16 @@ msgstr "Cannot add empty conversation" msgid "Changes will be saved automatically" msgstr "Changes will be saved automatically" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Chat" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Chat | Dembrane" @@ -1039,7 +1129,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Chats" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Chats" @@ -1056,15 +1146,23 @@ msgstr "Check microphone access" #~ msgid "Check microphone access" #~ msgstr "Check microphone access" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Check your email" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Checking..." +#~ msgid "Checking..." +#~ msgstr "Checking..." + +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Choose a logo file" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Choose from your other projects" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" msgstr "Choose when you want to receive notifications" @@ -1076,34 +1174,42 @@ msgstr "Choose your preferred theme for the interface" #~ msgid "Citing the following sources" #~ msgstr "Citing the following sources" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Click \"Upload Files\" when you're ready to start the upload process." #: src/routes/project/HostGuidePage.tsx:1385 msgid "Click to edit" -msgstr "" +msgstr "Click to edit" #: src/components/conversation/ConversationLinks.tsx:155 msgid "Click to see all {totalCount} conversations" msgstr "Click to see all {totalCount} conversations" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Clone from another project" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Clone from Project" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Clone project" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Clone Project" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Close" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Close" @@ -1111,7 +1217,7 @@ msgstr "Close" msgid "Collection" msgstr "Collection" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" msgstr "Common use cases:" @@ -1123,16 +1229,16 @@ msgstr "Compare & Contrast" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Compare and contrast the following items provided in the context." -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Complete" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Concrete Topics" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Confirm" @@ -1141,12 +1247,12 @@ msgstr "Confirm" msgid "Confirm New Password" msgstr "Confirm New Password" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Confirm Password" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Confirm Publishing" @@ -1154,7 +1260,7 @@ msgstr "Confirm Publishing" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Confirm your password to generate a new secret for your authenticator app." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Connecting to report services..." @@ -1174,7 +1280,7 @@ msgstr "Connection unhealthy" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Contact your sales representative to activate this feature today!" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Context" @@ -1187,8 +1293,8 @@ msgstr "Context added:" #~ msgstr "Context limit reached" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Continue" @@ -1201,7 +1307,7 @@ msgstr "Continue" #~ msgid "conversation" #~ msgstr "conversation" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Conversation added to chat" @@ -1222,7 +1328,7 @@ msgstr "Conversation Ended" #~ msgid "Conversation processing" #~ msgstr "Conversation processing" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Conversation removed from chat" @@ -1231,19 +1337,19 @@ msgstr "Conversation removed from chat" msgid "Conversation Status" msgstr "Conversation Status" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Conversation Status Details" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" msgstr "Conversation tags" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "conversations" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Conversations" @@ -1259,32 +1365,38 @@ msgstr "Conversations" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Cooling down. Available in {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Copied" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Copied from original conversation" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" msgstr "Copied!" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Copy" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Copy link" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Copy link to share this report" @@ -1293,15 +1405,15 @@ msgstr "Copy link to share this report" msgid "Copy secret" msgstr "Copy secret" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Copy Summary" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" msgstr "Copy to Clipboard" @@ -1313,11 +1425,15 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Create" -#: src/routes/auth/Register.tsx:57 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Create a new webhook from scratch" + +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Create an Account" @@ -1331,7 +1447,7 @@ msgstr "Create Library" #~ msgstr "Create Library" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Create new view" @@ -1340,12 +1456,12 @@ msgstr "Create new view" #~ msgstr "Create new view" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Create Report" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Create View" @@ -1353,55 +1469,71 @@ msgstr "Create View" msgid "Create View" msgstr "Create View" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" msgstr "Create Webhook" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Created on" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Current logo" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Custom" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Custom Filename" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Custom Logo" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Custom title prompt" + #: src/components/project/ProjectDangerZone.tsx:28 #~ msgid "Danger Zone" #~ msgstr "Danger Zone" -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "Dashboard URL (direct link to conversation overview)" + +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Default" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Default - No tutorial (Only privacy statements)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Delete" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Delete" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Delete Conversation" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Delete Project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" msgstr "Delete Webhook" @@ -1417,8 +1549,8 @@ msgstr "Deleted successfully" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane is powered by AI. Please double-check responses." @@ -1468,11 +1600,11 @@ msgstr "Disable two-factor authentication" msgid "Disabled" msgstr "Disabled" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" msgstr "Do I need this?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "Do you want to contribute to this project?" @@ -1480,19 +1612,19 @@ msgstr "Do you want to contribute to this project?" msgid "Do you want to stay in the loop?" msgstr "Do you want to stay in the loop?" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Documentation" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Download" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Download all conversation transcripts generated for this project." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Download All Transcripts" @@ -1504,34 +1636,51 @@ msgstr "Download as" #~ msgid "Download audio" #~ msgstr "Download audio" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Download Audio" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "Download QR code" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Download transcript" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Download Transcript Options" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Drag audio files here or click to select files" #: src/routes/project/HostGuidePage.tsx:1397 msgid "Drag to reorder" -msgstr "" +msgstr "Drag to reorder" + +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Duration" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Dutch" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" msgstr "e.g., Slack Notifications, Make Workflow" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" + #: src/routes/participant/ParticipantConversation.tsx:512 #: src/routes/participant/ParticipantConversation.tsx:597 #~ msgid "ECHO" @@ -1552,19 +1701,19 @@ msgstr "e.g., Slack Notifications, Make Workflow" #~ msgid "ECHO!" #~ msgstr "ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" msgstr "Edit" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Edit Conversation" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Edit file name" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Edit Project" @@ -1581,16 +1730,16 @@ msgstr "Edit Report Content" msgid "report.editor.description" msgstr "Edit the report content using the rich text editor below. You can format text, add links, images, and more." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" msgstr "Edit Webhook" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Editing mode" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "Email" @@ -1610,7 +1759,7 @@ msgstr "Email verified successfully. You will be redirected to the login page in msgid "email@work.com" msgstr "email@work.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Empty" @@ -1634,30 +1783,34 @@ msgstr "Enable 2FA" #~ msgid "Enable Dembrane Verify" #~ msgstr "Enable Dembrane Verify" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Enable Explore" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Enable Go deeper" +#~ msgid "Enable Go deeper" +#~ msgstr "Enable Go deeper" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Enable Make it concrete" +#~ msgid "Enable Make it concrete" +#~ msgstr "Enable Make it concrete" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" -msgstr "" +msgstr "Enable participation" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Enable Report Notifications" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #: src/components/project/ProjectPortalEditor.tsx:395 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." @@ -1667,20 +1820,32 @@ msgstr "Enable this feature to allow participants to receive notifications when #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." + #: src/components/project/ProjectBasicEdit.tsx:165 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Enable transcript anonymization" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Enable two-factor authentication" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Enable Verify" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Enabled" @@ -1689,23 +1854,23 @@ msgstr "Enabled" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "End of list • All {0} conversations loaded" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "English" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Enter a key term or proper noun" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Enter a name for the new conversation" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Enter a name for your cloned project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" msgstr "Enter a secret key" @@ -1713,15 +1878,15 @@ msgstr "Enter a secret key" msgid "Enter a valid code to turn off two-factor authentication." msgstr "Enter a valid code to turn off two-factor authentication." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Enter filename (without extension)" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Enter new name for the chat:" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Enter the 6-digit code from your authenticator app." @@ -1741,16 +1906,20 @@ msgstr "Enter your password" msgid "Enter your query" msgstr "Enter your query" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Entered by the participant on the portal" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Error" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Error cloning project" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Error creating report" @@ -1762,8 +1931,8 @@ msgstr "Error loading announcements" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Error loading project" @@ -1771,30 +1940,30 @@ msgstr "Error loading project" #~ msgid "Error loading quotes" #~ msgstr "Error loading quotes" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Error occurred" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Error updating report" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Error uploading \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" msgstr "Events" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" msgstr "Events to Listen For" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Everything looks good – you can continue." @@ -1802,7 +1971,7 @@ msgstr "Everything looks good – you can continue." #~ msgid "Everything looks good – you can continue." #~ msgstr "Everything looks good – you can continue." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" msgstr "Example Webhook Payload" @@ -1817,46 +1986,59 @@ msgstr "Example Webhook Payload" #~ msgid "Experimental" #~ msgstr "Experimental" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Explore" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Explore" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Explore themes & patterns across all conversations" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "Exploring {conversationCount} conversations" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Export" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Failed" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Failed to add conversation to chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Failed to add conversation to chat{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Failed to add conversations to context" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Failed to approve artefact. Please try again." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Failed to approve artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Failed to approve outcome. Please try again." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Failed to copy chat. Please try again." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." @@ -1864,13 +2046,13 @@ msgstr "Failed to copy transcript. Please try again." msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Failed to disable Auto Select for this chat" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Failed to enable Auto Select for this chat" @@ -1882,7 +2064,7 @@ msgstr "Failed to enable Auto Select for this chat" msgid "Failed to finish conversation. Please try again." msgstr "Failed to finish conversation. Please try again." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Failed to generate {label}. Please try again." @@ -1890,7 +2072,7 @@ msgstr "Failed to generate {label}. Please try again." #~ msgid "Failed to generate Hidden gems. Please try again." #~ msgstr "Failed to generate Hidden gems. Please try again." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Failed to generate the summary. Please try again later." @@ -1911,7 +2093,7 @@ msgstr "Failed to get announcements" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Failed to load audio or the audio is not available" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" msgstr "Failed to load webhooks" @@ -1929,30 +2111,38 @@ msgstr "Failed to mark announcement as read" msgid "Failed to reconnect. Please try reloading the page." msgstr "Failed to reconnect. Please try reloading the page." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Failed to regenerate the summary. Please try again later." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Failed to reload. Please try again." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Failed to remove conversation from chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Failed to remove conversation from chat{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Failed to remove logo" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Failed to retranscribe conversation. Please try again." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Failed to revise artefact. Please try again." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Failed to revise artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Failed to revise outcome. Please try again." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1962,6 +2152,10 @@ msgstr "Failed to revise artefact. Please try again." msgid "Failed to stop recording on device change. Please try again." msgstr "Failed to stop recording on device change. Please try again." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Failed to upload logo" + #: src/routes/participant/ParticipantPostConversation.tsx:134 #: src/routes/participant/ParticipantPostConversation.tsx:139 #~ msgid "Failed to verify email status. Please try again." @@ -1969,38 +2163,42 @@ msgstr "Failed to stop recording on device change. Please try again." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" +msgid "participant.modal.echo.info.title" msgstr "Feature available soon" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "File \"{0}\" exceeds the maximum size of {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "File \"{0}\" has an unsupported format. Only audio files are allowed." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "File \"{0}\" is not a supported audio format. Only audio files are allowed." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "File \"{0}\" is too small ({1}). Minimum size is {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "File size: Min {0}, Max {1}, up to {MAX_FILES} files" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Filename from uploaded file" + #: src/components/conversation/ConversationAccordion.tsx:473 #~ msgid "Filter" #~ msgstr "Filter" @@ -2027,12 +2225,12 @@ msgid "participant.button.stop.finish" msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Finish" @@ -2042,7 +2240,7 @@ msgstr "Finish" #~ msgstr "Finish" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "Finish Conversation" @@ -2050,8 +2248,8 @@ msgstr "Finish Conversation" msgid "Finished" msgstr "Finished" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "First Name" @@ -2063,23 +2261,35 @@ msgstr "First Name" #~ msgid "Follow playback" #~ msgstr "Follow playback" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Font Size" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." msgstr "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "Forgot your password?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "French" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" msgstr "Full transcript (when available)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Generate" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Generate a summary first" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Generate insights from your conversations" @@ -2091,15 +2301,15 @@ msgstr "Generate secret" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Generate structured meeting notes based on the following discussion points provided in the context." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Generate Summary" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Generating the summary. Please wait..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "German" @@ -2108,7 +2318,7 @@ msgid "Get an immediate reply from Dembrane to help you deepen the conversation. msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." @@ -2116,29 +2326,24 @@ msgstr "Get an immediate reply from Dembrane to help you deepen the conversation msgid "Give me a list of 5-10 topics that are being discussed." msgstr "Give me a list of 5-10 topics that are being discussed." -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Go back" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Go back" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Go deeper" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Go deeper" +#~ msgid "Go deeper" +#~ msgstr "Go deeper" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Go home" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Go to new conversation" @@ -2146,16 +2351,20 @@ msgstr "Go to new conversation" #~ msgid "Grid view" #~ msgstr "Grid view" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "Has verified artifacts" -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Help us translate" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Hi, {0}" @@ -2163,10 +2372,14 @@ msgstr "Hi, {0}" msgid "Hidden" msgstr "Hidden" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Hidden gem" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Hide" + #: src/components/conversation/ConversationAccordion.tsx:555 #~ msgid "Hide {0}" #~ msgstr "Hide {0}" @@ -2191,15 +2404,15 @@ msgstr "Hide data" msgid "Hide revision data" msgstr "Hide revision data" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Home" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" msgstr "How it works:" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -2210,7 +2423,7 @@ msgstr "" "* What does success look like" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "I understand" @@ -2245,7 +2458,7 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." @@ -2253,11 +2466,11 @@ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you fe #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." #~ msgstr "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." msgstr "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." msgstr "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2269,7 +2482,7 @@ msgstr "If you're setting up webhook integrations, we'd love to learn about your #~ msgid "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" #~ msgstr "In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature" -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Include portal link in report" @@ -2301,7 +2514,7 @@ msgstr "Insights" msgid "Invalid code. Please request a new one." msgstr "Invalid code. Please request a new one." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Invalid credentials." @@ -2329,21 +2542,20 @@ msgstr "It looks like the library is not available for your account. Please requ #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." +msgid "participant.outcome.error.description" +msgstr "It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italian" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Join {0} on Dembrane" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Join {0} on Dembrane" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -2357,12 +2569,12 @@ msgstr "Just a moment" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Language" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Last Name" @@ -2377,11 +2589,11 @@ msgstr "Last saved {0}" msgid "Last Updated" msgstr "Last Updated" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" msgstr "Learn more about webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" msgstr "Leave empty to keep existing" @@ -2395,7 +2607,7 @@ msgstr "Let us know!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Library" @@ -2425,7 +2637,7 @@ msgstr "Link" #~ msgstr "Live" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Live audio level:" @@ -2433,12 +2645,12 @@ msgstr "Live audio level:" #~ msgid "Live audio level:" #~ msgstr "Live audio level:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Live Preview" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Loading" @@ -2455,7 +2667,7 @@ msgstr "Loading actions..." msgid "participant.concrete.loading.artefact" msgstr "Loading artefact" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Loading audit logs…" @@ -2463,16 +2675,16 @@ msgstr "Loading audit logs…" msgid "Loading collections..." msgstr "Loading collections..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Loading concrete topics…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Loading microphones..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Loading transcript..." @@ -2480,54 +2692,52 @@ msgstr "Loading transcript..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "loading..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Loading..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Loading…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Login" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Login | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Login as an existing user" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo removed" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo updated successfully" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Logout" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Longest First" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Make it concrete" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Make it concrete" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Mark all read" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Mark as read" @@ -2549,47 +2759,47 @@ msgstr "Microphone access is still denied. Please check your settings and try ag #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Mode" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "More templates" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Move" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Move Conversation" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Move to Another Project" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Move to Project" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Name" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Name A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" msgstr "Name is required" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Name Z-A" @@ -2597,7 +2807,7 @@ msgstr "Name Z-A" msgid "New" msgstr "New" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" msgstr "New Conversation Name" @@ -2615,32 +2825,32 @@ msgstr "New conversations have been added since the creation of the library. Cre msgid "New Password" msgstr "New Password" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "New Project" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Newest First" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Next" @@ -2649,7 +2859,7 @@ msgstr "Next" #~ msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "No" @@ -2657,16 +2867,16 @@ msgstr "No" msgid "No actions found" msgstr "No actions found" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "No announcements available" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "No audit logs match the current filters." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "No chats found. Start a chat using the \"Ask\" button." @@ -2678,11 +2888,11 @@ msgstr "No chats found. Start a chat using the \"Ask\" button." msgid "No collections found" msgstr "No collections found" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "No concrete topics available." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "No content" @@ -2703,16 +2913,16 @@ msgstr "No conversations available to create library. Please add some conversati msgid "No conversations found." msgstr "No conversations found." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "No conversations yet" @@ -2724,16 +2934,16 @@ msgstr "No conversations yet" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "No new feedback detected yet. Please continue your discussion and try again soon." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "No projects found {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "No projects found for search term" @@ -2745,7 +2955,7 @@ msgstr "No projects found for search term" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "No report found" @@ -2753,20 +2963,19 @@ msgstr "No report found" #~ msgid "No resources found." #~ msgstr "No resources found." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "No results" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "No tags found" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "No tags have been added to this project yet. Add a tag using the text input above to get started." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "No Transcript Available" @@ -2774,7 +2983,7 @@ msgstr "No Transcript Available" #~ msgid "No transcript available for this conversation." #~ msgstr "No transcript available for this conversation." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "No transcript exists for this conversation yet. Please check back later." @@ -2786,11 +2995,11 @@ msgstr "No transcript exists for this conversation yet. Please check back later. #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "No tutorial (only Privacy statements)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "No verification topics are configured for this project." @@ -2798,12 +3007,16 @@ msgstr "No verification topics are configured for this project." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "No webhooks configured" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "No webhooks found" + #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "Not Added" @@ -2811,26 +3024,30 @@ msgstr "Not Added" msgid "Not available" msgstr "Not available" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Notify participants when a report is published." + #: src/components/conversation/ConversationChunkAudioTranscript.tsx:341 #~ msgid "Now" #~ msgstr "Now" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Oldest First" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "Ongoing" @@ -2838,7 +3055,7 @@ msgstr "Ongoing" #~ msgid "Ongoing" #~ msgstr "Ongoing" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Ongoing Conversations" @@ -2864,13 +3081,17 @@ msgstr "Open" #~ msgid "Open Documentation" #~ msgstr "Open Documentation" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "Open for Participation?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Open guide" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" -msgstr "" +msgstr "Open Host Guide" #. js-lingui-explicit-id #: src/components/participant/PermissionErrorModal.tsx:59 @@ -2881,26 +3102,58 @@ msgstr "Open troubleshooting guide" #~ msgid "Open troubleshooting guide" #~ msgstr "Open troubleshooting guide" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Open your authenticator app and enter the current six-digit code." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" msgstr "Optional" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Optional field on the start page" + +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Optional field on the thank you page" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Options" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Outcome approved successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Outcome reloaded successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Outcome revised successfully!" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Outcome updated!" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "outcomes" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Outcomes" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Overview" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Overview - Themes & patterns" @@ -2908,7 +3161,7 @@ msgstr "Overview - Themes & patterns" #~ msgid "Page" #~ msgstr "Page" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Page Content" @@ -2916,39 +3169,47 @@ msgstr "Page Content" msgid "Page not found" msgstr "Page not found" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Page Title" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Participant" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Participant Email" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Participant Emails" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Participant Features" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" msgstr "Participant name and email" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Participants will be able to select tags when creating conversations" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Password" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Password protect portal (request feature)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Passwords do not match" @@ -2957,7 +3218,7 @@ msgstr "Passwords do not match" #~ msgid "Pause" #~ msgstr "Pause" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Pause reading" @@ -2965,12 +3226,12 @@ msgstr "Pause reading" msgid "Pending" msgstr "Pending" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Pick the approach that fits your question" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Please allow microphone access to start the test." @@ -2978,7 +3239,7 @@ msgstr "Please allow microphone access to start the test." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Please allow microphone access to start the test." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Please check back later or contact the project owner for more information." @@ -2990,12 +3251,11 @@ msgstr "Please check your inputs for errors." #~ msgid "Please do not close your browser" #~ msgstr "Please do not close your browser" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Please enable participation to enable sharing" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Please enter a valid email." @@ -3003,7 +3263,7 @@ msgstr "Please enter a valid email." #~ msgid "Please keep this screen lit up (black screen = not recording)" #~ msgstr "Please keep this screen lit up (black screen = not recording)" -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Please login to continue." @@ -3011,7 +3271,7 @@ msgstr "Please login to continue." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Please provide a concise summary of the following provided in the context." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -3025,11 +3285,11 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Please select a language for your report" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Please select a language for your updated report" @@ -3037,7 +3297,7 @@ msgstr "Please select a language for your updated report" #~ msgid "Please select at least one source" #~ msgstr "Please select at least one source" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Please select conversations from the sidebar to proceed" @@ -3057,21 +3317,21 @@ msgstr "Please select conversations from the sidebar to proceed" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Please wait {timeStr} before requesting another reply." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Please wait while we generate your report. You will automatically be redirected to the report page." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Please wait while we process your request. You requested to create the library on {0}" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Please wait while we update your report. You will automatically be redirected to the report page." @@ -3079,20 +3339,20 @@ msgstr "Please wait while we update your report. You will automatically be redir msgid "Please wait while we verify your email address." msgstr "Please wait while we verify your email address." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Portal Content" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Portal Editor" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Powered by" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Preparing your conversations... This may take a moment." @@ -3100,11 +3360,15 @@ msgstr "Preparing your conversations... This may take a moment." msgid "Preparing your experience" msgstr "Preparing your experience" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Preview: The quick brown fox jumps over the lazy dog." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" -msgstr "" +msgstr "Print / Save PDF" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Print this report" @@ -3112,12 +3376,12 @@ msgstr "Print this report" msgid "Privacy Statements" msgstr "Privacy Statements" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Proceed" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Proceed" @@ -3130,7 +3394,7 @@ msgstr "Proceed" #~ msgstr "Processing" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "Processing <0>{totalCount, plural, one {# conversation} other {# conversations}} and adding them to your chat" @@ -3146,12 +3410,12 @@ msgstr "Processing <0>{totalCount, plural, one {# conversation} other {# convers #~ msgid "Processing Transcript" #~ msgstr "Processing Transcript" -#: src/components/report/UpdateReportModalButton.tsx:73 -#: src/components/report/CreateReportForm.tsx:51 +#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/CreateReportForm.tsx:52 msgid "Processing your report..." msgstr "Processing your report..." -#: src/components/conversation/RetranscribeConversation.tsx:127 +#: src/components/conversation/RetranscribeConversation.tsx:143 msgid "Processing your retranscription request..." msgstr "Processing your retranscription request..." @@ -3159,19 +3423,23 @@ msgstr "Processing your retranscription request..." msgid "Project Created" msgstr "Project Created" +#: src/components/conversation/RetranscribeConversation.tsx:172 +msgid "Project default: enabled. This will replace personally identifiable information with ." +msgstr "Project default: enabled. This will replace personally identifiable information with ." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Project Library | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Project name" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" msgstr "Project name and ID" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "Project name must be at least 4 characters long" @@ -3183,7 +3451,7 @@ msgstr "Project not found" #~ msgid "Project Overview" #~ msgstr "Project Overview" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Project Overview | Dembrane" @@ -3191,19 +3459,19 @@ msgstr "Project Overview | Dembrane" #~ msgid "Project Overview and Edit" #~ msgstr "Project Overview and Edit" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Project Settings" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Projects" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Projects | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Projects Home" @@ -3215,15 +3483,15 @@ msgstr "Provide an overview of the main topics and recurring themes" #~ msgid "Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information." #~ msgstr "Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information." -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Publish" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Published" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Pull out the most impactful quotes from this session" @@ -3233,12 +3501,16 @@ msgstr "Pull out the most impactful quotes from this session" #~ msgid "Quotes" #~ msgstr "Quotes" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Re-use settings from an existing webhook" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Read aloud" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -3246,7 +3518,7 @@ msgstr "Ready to Begin?" #~ msgid "Ready to Begin?" #~ msgstr "Ready to Begin?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." msgstr "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." @@ -3255,12 +3527,12 @@ msgid "Recommended apps" msgstr "Recommended apps" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Reconnect" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Record" @@ -3268,17 +3540,17 @@ msgstr "Record" #~ msgid "Record" #~ msgstr "Record" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Record another conversation" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Recording interrupted" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Recording Paused" @@ -3301,12 +3573,7 @@ msgstr "Recurring Themes" msgid "References" msgstr "References" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Refine" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Refresh" @@ -3318,24 +3585,24 @@ msgstr "Refresh audit logs" #~ msgid "Regenerate Library" #~ msgstr "Regenerate Library" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Regenerate Summary" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Regenerating the artefact" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Regenerating the outcome" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Regenerating the summary. Please wait..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "Register | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "Register as a new user" @@ -3344,7 +3611,7 @@ msgstr "Register as a new user" #~ msgstr "Relevance" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Reload Page" @@ -3354,7 +3621,7 @@ msgid "participant.button.reload" msgstr "Reload Page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Reload Page" @@ -3363,20 +3630,24 @@ msgstr "Reload Page" #~ msgid "Reload Page" #~ msgstr "Reload Page" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Remove" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "Remove Email" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Remove file" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Remove from this chat" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Rename" @@ -3384,17 +3655,17 @@ msgstr "Rename" #~ msgid "Rename" #~ msgstr "Rename" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Reply Prompt" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Report" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Report an issue" @@ -3403,11 +3674,11 @@ msgstr "Report an issue" msgid "Report Created - {0}" msgstr "Report Created - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Report Notifications" @@ -3425,16 +3696,16 @@ msgstr "Request Access" msgid "Request Access" msgstr "Request Access" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Request Password Reset" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Request Password Reset | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Requesting microphone access to detect available devices..." @@ -3442,9 +3713,13 @@ msgstr "Requesting microphone access to detect available devices..." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Requesting microphone access to detect available devices..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Requires \"Ask for Email?\" to be enabled" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" -msgstr "" +msgstr "Reset" #: src/components/conversation/ConversationAccordion.tsx:968 #~ msgid "Reset All Options" @@ -3459,8 +3734,8 @@ msgstr "Reset Password" msgid "Reset Password | Dembrane" msgstr "Reset Password | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Reset to default" @@ -3477,27 +3752,27 @@ msgstr "Resume" #~ msgid "Resume" #~ msgstr "Resume" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Retranscribe" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Retranscribe conversation" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Retranscribe Conversation" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "Retranscription started. New conversation will be available soon." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Retry" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Retry Upload" @@ -3505,7 +3780,7 @@ msgstr "Retry Upload" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Review files before uploading" @@ -3514,24 +3789,24 @@ msgid "Review processing status for every conversation collected in this project msgstr "Review processing status for every conversation collected in this project." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "Revise" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" #: src/routes/project/HostGuidePage.tsx:1391 msgid "Right-click to highlight" -msgstr "" +msgstr "Right-click to highlight" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Rows per page" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "Save" @@ -3539,7 +3814,7 @@ msgstr "Save" #~ msgid "Save" #~ msgstr "Save" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" msgstr "Save Changes" @@ -3561,11 +3836,11 @@ msgid "Scroll to bottom" msgstr "Scroll to bottom" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Search" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Search" @@ -3573,20 +3848,20 @@ msgstr "Search" msgid "Search conversations" msgstr "Search conversations" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Search projects" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Search Projects" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Search projects..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Search tags" @@ -3595,10 +3870,14 @@ msgid "Search templates..." msgstr "Search templates..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Search text:" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Search webhooks..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" @@ -3607,7 +3886,7 @@ msgstr "Searched through the most relevant sources" msgid "Searching through the most relevant sources" msgstr "Searching through the most relevant sources" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" msgstr "Secret" @@ -3619,7 +3898,7 @@ msgstr "Secret copied" #~ msgid "See conversation status details" #~ msgstr "See conversation status details" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "See you soon" @@ -3627,66 +3906,70 @@ msgstr "See you soon" #~ msgid "Segments" #~ msgstr "Segments" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Select a microphone" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Select a webhook to clone" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Select all" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Select all ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Select All Results" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" msgstr "Select at least one event" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Select Audio Files to Upload" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Select conversations and find exact quotes" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Select conversations from sidebar" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Select Project" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Select tags" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Select the instructions that will be shown to participants when they start a conversation" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Select the type of feedback or engagement you want to encourage." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Select tutorial" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Select which topics participants can use for \"Make it concrete\"." +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Select which topics participants can use for verification." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Select your microphone:" @@ -3695,29 +3978,29 @@ msgstr "Select your microphone:" #~ msgstr "Select your microphone:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Selected Files ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Selected microphone:" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Selection too large" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Selection too large. Some conversations weren't added." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Send" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" msgstr "Send Slack/Teams notifications when new conversations are completed" @@ -3725,36 +4008,36 @@ msgstr "Send Slack/Teams notifications when new conversations are completed" #~ msgid "Sentiment" #~ msgstr "Sentiment" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Session Name" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Setting up your first project" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Settings" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Settings" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Settings | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Share" +#~ msgid "Share" +#~ msgstr "Share" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Share this report" @@ -3762,18 +4045,22 @@ msgstr "Share this report" msgid "Share your details here" msgstr "Share your details here" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Share your voice" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Share your voice by scanning the QR code below." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Shortest First" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Show" + #: src/components/conversation/ConversationAccordion.tsx:555 #~ msgid "Show {0}" #~ msgstr "Show {0}" @@ -3782,7 +4069,7 @@ msgstr "Shortest First" #~ msgid "Show all" #~ msgstr "Show all" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Show audio player" @@ -3798,11 +4085,11 @@ msgstr "Show data" msgid "Show IP addresses" msgstr "Show IP addresses" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Show less" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Show more" @@ -3815,7 +4102,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Show timeline in report (request feature)" @@ -3823,7 +4110,7 @@ msgstr "Show timeline in report (request feature)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Show timestamps (experimental)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "Showing {displayFrom}–{displayTo} of {totalItems} entries" @@ -3844,12 +4131,12 @@ msgstr "Skip" #~ msgid "Skip data privacy slide (Host manages consent)" #~ msgstr "Skip data privacy slide (Host manages consent)" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Skip data privacy slide (Host manages legal base)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Skipped because the selection was too large." @@ -3857,23 +4144,23 @@ msgstr "Skipped because the selection was too large." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Some files were already selected and won't be added twice." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Some may be skipped (no transcript or selection too large)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Something went wrong" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Something went wrong" @@ -3894,16 +4181,16 @@ msgstr "Something went wrong while generating the secret." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Something went wrong while uploading the file: {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues." +msgid "participant.explore.generic.error.message" +msgstr "Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." @@ -3912,8 +4199,8 @@ msgstr "Something went wrong. Please try again." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "Sorry, we cannot process this request due to an LLM provider's content policy." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Sort" @@ -3926,7 +4213,7 @@ msgstr "Source {0}" #~ msgid "Sources:" #~ msgstr "Sources:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Spanish" @@ -3934,21 +4221,25 @@ msgstr "Spanish" #~ msgid "Speaker" #~ msgstr "Speaker" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Specific Context" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Specific Details" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Specific Details - Selected conversations" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Start fresh" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Start New Conversation" @@ -3974,12 +4265,12 @@ msgstr "Start over" msgid "Status" msgstr "Status" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Stop" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Stop" @@ -3987,12 +4278,12 @@ msgstr "Stop" msgid "Strategic Planning" msgstr "Strategic Planning" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Submit" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Submit" @@ -4001,7 +4292,7 @@ msgstr "Submit" #~ msgid "Submitted via text input" #~ msgstr "Submitted via text input" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Success" @@ -4014,23 +4305,23 @@ msgstr "Suggested:" msgid "Summarize" msgstr "Summarize" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Summarize key insights from my interviews" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Summarize this interview into a shareable article" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Summary" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" msgstr "Summary (when available)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Summary generated successfully." @@ -4038,15 +4329,15 @@ msgstr "Summary generated successfully." #~ msgid "Summary not available yet" #~ msgstr "Summary not available yet" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Summary regenerated successfully." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "Summary will be available once the conversation is transcribed" -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -4059,11 +4350,11 @@ msgstr "Switch to text input" msgid "System" msgstr "System" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Tags" @@ -4080,7 +4371,7 @@ msgstr "Take some time to create an outcome that makes your contribution concret msgid "participant.refine.make.concrete.description" msgstr "Take some time to create an outcome that makes your contribution concrete." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Template applied" @@ -4088,15 +4379,15 @@ msgstr "Template applied" msgid "Templates" msgstr "Templates" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" msgstr "Test Webhook" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Text" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "Thank you for participating!" @@ -4104,15 +4395,15 @@ msgstr "Thank you for participating!" #~ msgid "Thank You Page" #~ msgstr "Thank You Page" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Thank You Page Content" -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" -msgstr "Grazie!" +msgstr "Thank you!" -#: src/routes/auth/Login.tsx:141 +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "That code didn't work. Try again with a fresh code from your authenticator app." @@ -4124,7 +4415,7 @@ msgid "The code didn't work, please try again." msgstr "The code didn't work, please try again." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "The conversation could not be loaded. Please try again or contact support." @@ -4138,7 +4429,7 @@ msgstr "The conversation could not be loaded. Please try again or contact suppor #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "The conversation could not be loaded. Please try again or contact support." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." msgstr "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." @@ -4154,11 +4445,11 @@ msgstr "The following conversations were automatically added to the context" #~ msgid "the project library." #~ msgstr "the project library." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "The summary is being generated. Please wait for it to be available." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "The summary is being regenerated. Please wait for it to be available." @@ -4174,23 +4465,27 @@ msgstr "The summary is being regenerated. Please wait for it to be available." #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "The transcript for this conversation is being processed. Please check back later." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Theme" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "There was an error cloning your project. Please try again or contact support." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "There was an error creating your report. Please try again or contact support." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "There was an error updating your report. Please try again or contact support." @@ -4207,7 +4502,7 @@ msgstr "There was an error verifying your email. Please try again." #~ msgstr "These are your default view templates. Once you create your library these will be your first two views." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "These conversations were excluded due to missing transcripts." @@ -4215,7 +4510,7 @@ msgstr "These conversations were excluded due to missing transcripts." msgid "These default view templates will be generated when you create your first library." msgstr "These default view templates will be generated when you create your first library." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Thinking..." @@ -4237,7 +4532,7 @@ msgstr "This conversation is a copy of" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "This conversation is still being processed. It will be available for analysis and chat shortly. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "This email is already in the list." @@ -4246,15 +4541,15 @@ msgstr "This email is already in the list." #~ msgstr "This email is already subscribed to notifications." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "This feature will be available in {remainingTime} seconds." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." msgstr "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." @@ -4283,15 +4578,15 @@ msgstr "This is your project library. Create views to analyse your entire projec #~ msgid "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." #~ msgstr "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "This language will be used for the Participant's Portal." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "This page is shown after the participant has completed the conversation." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "This page is shown to participants when they start a conversation after they successfully complete the tutorial." @@ -4303,16 +4598,16 @@ msgstr "This page is shown to participants when they start a conversation after #~ msgid "This project library was generated on {0}." #~ msgstr "This project library was generated on {0}." -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "This report is not yet available. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" @@ -4320,7 +4615,7 @@ msgstr "This report was opened by {0} people" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "This title is shown to participants when they start a conversation" @@ -4328,11 +4623,11 @@ msgstr "This title is shown to participants when they start a conversation" msgid "This will clear your current input. Are you sure?" msgstr "This will clear your current input. Are you sure?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." @@ -4342,7 +4637,7 @@ msgid "add.tag.filter.modal.info" msgstr "This will filter the conversation list to show conversations with this tag." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "This will just take a few moments" @@ -4351,7 +4646,7 @@ msgstr "This will just take a few moments" msgid "participant.concrete.loading.artefact.description" msgstr "This will just take a moment" -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "This will replace personally identifiable information with ." @@ -4363,39 +4658,43 @@ msgstr "This will replace personally identifiable information with ." msgid "Timestamp" msgstr "Timestamp" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:592 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:815 msgid "Timestamps and duration" msgstr "Timestamps and duration" -#: src/components/participant/ParticipantBody.tsx:143 +#: src/components/participant/ParticipantBody.tsx:144 msgid "Tip" msgstr "Tip" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:771 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:997 msgid "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." msgstr "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." -#: src/components/project/ProjectBasicEdit.tsx:80 -#~ msgid "Title" -#~ msgstr "Title" +#: src/components/conversation/ConversationEdit.tsx:319 +msgid "Title" +msgstr "Title" -#: src/components/conversation/ConversationEdit.tsx:200 +#: src/components/conversation/ConversationEdit.tsx:381 msgid "To assign a new tag, please create it first in the project overview." msgstr "To assign a new tag, please create it first in the project overview." -#: src/components/report/CreateReportForm.tsx:91 +#: src/components/report/CreateReportForm.tsx:92 msgid "To generate a report, please start by adding conversations in your project" msgstr "To generate a report, please start by adding conversations in your project" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:537 +#: src/components/conversation/SelectAllConfirmationModal.tsx:565 msgid "select.all.modal.context.limit" msgstr "Too large" -#: src/components/conversation/SelectAllConfirmationModal.tsx:128 +#: src/components/conversation/SelectAllConfirmationModal.tsx:129 msgid "Too long" msgstr "Too long" +#: src/components/conversation/ConversationEdit.tsx:340 +msgid "Topic-based title describing what was discussed" +msgstr "Topic-based title describing what was discussed" + #: src/components/view/CreateViewForm.tsx:123 msgid "Topics" msgstr "Topics" @@ -4408,12 +4707,12 @@ msgstr "Topics" msgid "Transcribing..." msgstr "Transcribing..." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:83 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:84 #: src/components/layout/ProjectConversationLayout.tsx:47 msgid "Transcript" msgstr "Transcript" -#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:28 msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" @@ -4511,7 +4810,7 @@ msgstr "" "\n" "Note: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:624 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:850 msgid "Trigger automated workflows in tools like Zapier, Make, or n8n" msgstr "Trigger automated workflows in tools like Zapier, Make, or n8n" @@ -4519,7 +4818,7 @@ msgstr "Trigger automated workflows in tools like Zapier, Make, or n8n" msgid "Try Again" msgstr "Try Again" -#: src/components/chat/ChatModeSelector.tsx:163 +#: src/components/chat/ChatModeSelector.tsx:162 msgid "Try asking" msgstr "Try asking" @@ -4543,32 +4842,36 @@ msgstr "Two-factor authentication enabled" msgid "Type" msgstr "Type" -#: src/routes/project/chat/ProjectChatRoute.tsx:726 +#: src/routes/project/chat/ProjectChatRoute.tsx:742 msgid "Type a message..." msgstr "Type a message..." -#: src/components/participant/ParticipantConversationText.tsx:207 +#: src/components/participant/ParticipantConversationText.tsx:214 msgid "Type your response here" msgstr "Type your response here" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:19 -msgid "participant.concrete.artefact.error.title" -msgstr "Unable to Load Artefact" - #: src/components/settings/AuditLogsCard.tsx:511 msgid "Unable to load audit logs." msgstr "Unable to load audit logs." +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +msgid "participant.outcome.error.title" +msgstr "Unable to Load Outcome" + #: src/components/participant/verify/VerifyArtefact.tsx:89 -msgid "Unable to load the generated artefact. Please try again." -msgstr "Unable to load the generated artefact. Please try again." +#~ msgid "Unable to load the generated artefact. Please try again." +#~ msgstr "Unable to load the generated artefact. Please try again." + +#: src/components/participant/verify/VerifyArtefact.tsx:90 +msgid "Unable to load the generated outcome. Please try again." +msgstr "Unable to load the generated outcome. Please try again." #: src/components/conversation/ConversationChunkAudioTranscript.tsx:69 msgid "Unable to process this chunk" msgstr "Unable to process this chunk" -#: src/routes/project/chat/ProjectChatRoute.tsx:431 +#: src/routes/project/chat/ProjectChatRoute.tsx:433 msgid "Undo" msgstr "Undo" @@ -4576,15 +4879,15 @@ msgstr "Undo" msgid "Unknown" msgstr "Unknown" -#: src/components/conversation/SelectAllConfirmationModal.tsx:132 +#: src/components/conversation/SelectAllConfirmationModal.tsx:133 msgid "Unknown reason" msgstr "Unknown reason" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:39 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:41 msgid "unread announcement" msgstr "unread announcement" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:40 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:42 msgid "unread announcements" msgstr "unread announcements" @@ -4600,20 +4903,20 @@ msgstr "Unsubscribe" msgid "Untitled Conversation" msgstr "Untitled Conversation" -#: src/components/report/UpdateReportModalButton.tsx:66 +#: src/components/report/UpdateReportModalButton.tsx:67 msgid "Update" msgstr "Update" -#: src/components/report/UpdateReportModalButton.tsx:70 -#: src/components/report/UpdateReportModalButton.tsx:122 +#: src/components/report/UpdateReportModalButton.tsx:76 +#: src/components/report/UpdateReportModalButton.tsx:133 msgid "Update Report" msgstr "Update Report" -#: src/components/report/UpdateReportModalButton.tsx:64 +#: src/components/report/UpdateReportModalButton.tsx:65 msgid "Update the report to include the latest data" msgstr "Update the report to include the latest data" -#: src/components/report/UpdateReportModalButton.tsx:91 +#: src/components/report/UpdateReportModalButton.tsx:100 msgid "Update your report to include the latest changes in your project. The link to share the report would remain the same." msgstr "Update your report to include the latest changes in your project. The link to share the report would remain the same." @@ -4625,29 +4928,34 @@ msgstr "Upgrade" msgid "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." msgstr "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." +#: src/components/settings/WhitelabelLogoCard.tsx:152 #: src/components/project/ProjectUploadSection.tsx:15 -#: src/components/dropzone/UploadConversationDropzone.tsx:504 -#: src/components/conversation/ConversationAccordion.tsx:409 +#: src/components/dropzone/UploadConversationDropzone.tsx:506 +#: src/components/conversation/ConversationAccordion.tsx:414 msgid "Upload" msgstr "Upload" +#: src/components/settings/WhitelabelLogoCard.tsx:100 +msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." + #: src/components/dropzone/UploadConversationDropzone.tsx:504 #~ msgid "Upload Audio" #~ msgstr "Upload Audio" -#: src/components/dropzone/UploadConversationDropzone.tsx:517 +#: src/components/dropzone/UploadConversationDropzone.tsx:519 msgid "Upload Complete" msgstr "Upload Complete" -#: src/components/dropzone/UploadConversationDropzone.tsx:498 +#: src/components/dropzone/UploadConversationDropzone.tsx:499 msgid "Upload conversations" msgstr "Upload conversations" -#: src/components/dropzone/UploadConversationDropzone.tsx:334 +#: src/components/dropzone/UploadConversationDropzone.tsx:335 msgid "Upload failed. Please try again." msgstr "Upload failed. Please try again." -#: src/components/dropzone/UploadConversationDropzone.tsx:694 +#: src/components/dropzone/UploadConversationDropzone.tsx:725 msgid "Upload Files" msgstr "Upload Files" @@ -4663,25 +4971,25 @@ msgstr "Upload Files" #~ msgid "Uploaded" #~ msgstr "Uploaded" -#: src/components/dropzone/UploadConversationDropzone.tsx:518 +#: src/components/dropzone/UploadConversationDropzone.tsx:520 msgid "Uploading Audio Files..." msgstr "Uploading Audio Files..." #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:60 +#: src/components/participant/StopRecordingConfirmationModal.tsx:62 msgid "participant.modal.uploading" msgstr "Uploading audio..." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:550 +#: src/components/participant/ParticipantConversationAudio.tsx:556 msgid "participant.modal.interruption.uploading" msgstr "Uploading audio..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:211 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:406 msgid "URL is required" msgstr "URL is required" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:208 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:403 msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" @@ -4689,16 +4997,20 @@ msgstr "URL must start with http:// or https://" #~ msgid "Use experimental features" #~ msgstr "Use experimental features" -#: src/components/conversation/RetranscribeConversation.tsx:152 +#: src/components/conversation/RetranscribeConversation.tsx:169 msgid "Use PII Redaction" msgstr "Use PII Redaction" -#: src/routes/project/chat/ProjectChatRoute.tsx:748 -#: src/routes/project/chat/ProjectChatRoute.tsx:778 +#: src/routes/project/chat/ProjectChatRoute.tsx:765 +#: src/routes/project/chat/ProjectChatRoute.tsx:795 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:820 +#: src/components/settings/WhitelabelLogoCard.tsx:134 +msgid "Using default Dembrane logo" +msgstr "Using default Dembrane logo" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" msgstr "Using webhooks? We'd love to hear from you" @@ -4711,17 +5023,17 @@ msgstr "Using webhooks? We'd love to hear from you" #~ msgstr "verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:111 +#: src/components/conversation/SelectAllConfirmationModal.tsx:112 msgid "select.all.modal.verified" msgstr "Verified" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:436 +#: src/components/conversation/SelectAllConfirmationModal.tsx:444 msgid "select.all.modal.loading.verified" msgstr "Verified" #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:1333 +#: src/components/conversation/ConversationAccordion.tsx:1347 msgid "conversation.filters.verified.text" msgstr "Verified" @@ -4733,11 +5045,21 @@ msgstr "Verified" #~ msgid "Verified Artefacts" #~ msgstr "Verified Artefacts" -#: src/components/conversation/ConversationAccordion.tsx:579 +#: src/components/conversation/ConversationAccordion.tsx:569 msgid "verified artifacts" msgstr "verified artifacts" -#: src/routes/auth/Login.tsx:277 +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verify" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" +msgstr "Dembrane Verify" + +#: src/routes/auth/Login.tsx:288 msgid "Verify code" msgstr "Verify code" @@ -4760,11 +5082,11 @@ msgstr "View" msgid "View Details" msgstr "View Details" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:601 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:827 msgid "View example payload" msgstr "View example payload" -#: src/components/participant/ParticipantBody.tsx:229 +#: src/components/participant/ParticipantBody.tsx:242 msgid "View your responses" msgstr "View your responses" @@ -4789,7 +5111,7 @@ msgstr "Want to add a template to \"Dembrane\"?" #~ msgstr "Warning: You have added {0} key terms. Only the first {ASSEMBLYAI_MAX_HOTWORDS} will be used by the transcription engine." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:366 +#: src/components/participant/MicrophoneTest.tsx:389 msgid "participant.alert.microphone.access.issue" msgstr "We cannot hear you. Please try changing your microphone or get a little closer to the device." @@ -4813,7 +5135,7 @@ msgstr "We couldn’t enable two-factor authentication. Double-check your code a #~ msgid "We have sent you an email with next steps. If you don't see it, check your spam folder." #~ msgstr "We have sent you an email with next steps. If you don't see it, check your spam folder." -#: src/routes/auth/CheckYourEmail.tsx:14 +#: src/routes/auth/CheckYourEmail.tsx:15 msgid "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" msgstr "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" @@ -4823,15 +5145,15 @@ msgstr "We have sent you an email with next steps. If you don't see it, check yo #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:450 -msgid "participant.modal.refine.info.reason" -msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." +msgid "participant.modal.echo.info.reason" +msgstr "We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions." -#: src/routes/participant/ParticipantPostConversation.tsx:252 +#: src/routes/participant/ParticipantPostConversation.tsx:263 msgid "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." msgstr "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:291 +#: src/components/participant/MicrophoneTest.tsx:292 msgid "participant.test.microphone.description" msgstr "We'll test your microphone to ensure the best experience for everyone in the session." @@ -4843,27 +5165,27 @@ msgstr "We'll test your microphone to ensure the best experience for everyone in msgid "We’re picking up some silence. Try speaking up so your voice comes through clearly." msgstr "We’re picking up some silence. Try speaking up so your voice comes through clearly." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:745 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:971 msgid "Webhook" msgstr "Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:216 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:411 msgid "Webhook URL" msgstr "Webhook URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:701 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:927 msgid "Webhooks" msgstr "Webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:545 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:742 msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/components/participant/ParticipantBody.tsx:124 +#: src/components/participant/ParticipantBody.tsx:125 msgid "Welcome" msgstr "Welcome" -#: src/routes/auth/Login.tsx:108 +#: src/routes/auth/Login.tsx:109 msgid "Welcome back" msgstr "Welcome back" @@ -4871,7 +5193,7 @@ msgstr "Welcome back" #~ msgid "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." #~ msgstr "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:529 +#: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." msgstr "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." @@ -4883,52 +5205,72 @@ msgstr "Welcome to Dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:528 +#: src/routes/project/chat/ProjectChatRoute.tsx:535 msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." msgstr "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." -#: src/components/report/CreateReportForm.tsx:79 +#: src/components/report/CreateReportForm.tsx:80 msgid "Welcome to Reports!" msgstr "Welcome to Reports!" -#: src/routes/project/ProjectsHome.tsx:152 +#: src/routes/project/ProjectsHome.tsx:154 msgid "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" msgstr "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" -#: src/routes/auth/Login.tsx:191 +#: src/routes/auth/Login.tsx:192 msgid "Welcome!" msgstr "Welcome!" -#: src/components/chat/ChatModeSelector.tsx:46 +#: src/components/chat/ChatModeSelector.tsx:47 msgid "What are the main themes across all conversations?" msgstr "What are the main themes across all conversations?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:538 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 msgid "What are webhooks? (2 min read)" msgstr "What are webhooks? (2 min read)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:576 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:799 msgid "What data is sent?" msgstr "What data is sent?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:196 +#: src/components/participant/verify/VerifySelection.tsx:201 msgid "participant.concrete.selection.title" msgstr "What do you want to make concrete?" -#: src/components/chat/ChatModeSelector.tsx:48 +#: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" msgstr "What patterns emerge from the data?" -#: src/components/chat/ChatModeSelector.tsx:54 +#: src/components/chat/ChatModeSelector.tsx:55 msgid "What were the key moments in this conversation?" msgstr "What were the key moments in this conversation?" -#: src/components/chat/ChatModeSelector.tsx:242 +#: src/components/chat/ChatModeSelector.tsx:250 msgid "What would you like to explore?" msgstr "What would you like to explore?" -#: src/components/report/CreateReportForm.tsx:120 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:778 +msgid "When a participant opens the portal, enters their details, and begins a conversation" +msgstr "When a participant opens the portal, enters their details, and begins a conversation" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:785 +msgid "When all audio has been converted to text and the full transcript is available" +msgstr "When all audio has been converted to text and the full transcript is available" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:773 +msgid "When are webhooks triggered?" +msgstr "When are webhooks triggered?" + +#: src/components/project/ProjectPortalEditor.tsx:1178 +msgid "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." +msgstr "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:792 +msgid "When the summary is ready (includes both transcript and summary)" +msgstr "When the summary is ready (includes both transcript and summary)" + +#: src/components/report/CreateReportForm.tsx:121 msgid "will be included in your report" msgstr "will be included in your report" @@ -4938,7 +5280,7 @@ msgid "add.tag.filter.modal.description" msgstr "Would you like to add this tag to your current filters?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:177 +#: src/components/participant/ParticipantConversationText.tsx:179 msgid "participant.button.finish.yes.text.mode" msgstr "Yes" @@ -4951,7 +5293,7 @@ msgid "You are already unsubscribed or your link is invalid." msgstr "You are already unsubscribed or your link is invalid." #. placeholder {0}: MAX_FILES - selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:399 +#: src/components/dropzone/UploadConversationDropzone.tsx:400 msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." msgstr "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." @@ -4960,16 +5302,16 @@ msgstr "You can only upload up to {MAX_FILES} files at a time. Only the first {0 #~ msgstr "You can still use the Ask feature to chat with any conversation" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:247 +#: src/components/conversation/SelectAllConfirmationModal.tsx:249 msgid "select.all.modal.already.added" msgstr "You have already added <0>{existingContextCount, plural, one {# conversation} other {# conversations}} to this chat." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "You have already added all the conversations related to this" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "You have changed the mic. Doing this will save your audio till this point and restart your recording." @@ -4981,7 +5323,7 @@ msgstr "You have changed the mic. Doing this will save your audio till this poin msgid "You have successfully unsubscribed." msgstr "You have successfully unsubscribed." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "You may also choose to record another conversation." @@ -4989,21 +5331,21 @@ msgstr "You may also choose to record another conversation." #~ msgid "You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts." #~ msgstr "You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "You must login with the same provider you used to sign up. If you face any issues, please contact support." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "You'll soon get {objectLabel} to make them concrete." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "Your approval helps us understand what you really think!" @@ -5023,11 +5365,11 @@ msgstr "Your inputs will be saved automatically." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Your library is empty. Create a library to see your first insights." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Your response has been recorded. You may now close this tab." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Your responses" @@ -5036,7 +5378,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Your view has been created. Please wait as we process and analyse the data." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Your Views" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index e6c9b25a..4a02b1de 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"iH8pgl\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"ZQKLI1\":[\"Danger Zone\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Dutch\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"329BBO\":[\"Enable two-factor authentication\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Options\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"participant.button.refine\":[\"Refine\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Grazie!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default Dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verify\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index 14cbd086..01f242f1 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -40,17 +40,17 @@ msgid "Something went wrong" msgstr "Er is iets fout gegaan" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:143 +#: src/components/layout/TransitionCurtainProvider.tsx:156 msgid "We're preparing your workspace." msgstr "We bereiden je werkruimte voor." #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:173 +#: src/components/layout/TransitionCurtainProvider.tsx:189 msgid "Preparing your dashboard" msgstr "Dashboard klaarmaken" #. js-lingui-explicit-id -#: src/components/layout/TransitionCurtainProvider.tsx:181 +#: src/components/layout/TransitionCurtainProvider.tsx:197 msgid "Welcome back" msgstr "Welkom terug" @@ -80,11 +80,81 @@ msgstr "Welkom terug" #~ msgstr "We hebben je opname tot <0>{formattedDuration} opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:238 +#: src/components/participant/ParticipantConversationAudio.tsx:436 +#~ msgid "participant.modal.refine.info.title.go.deeper" +#~ msgstr "Ga dieper" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:429 +#~ msgid "participant.modal.refine.info.title.concrete" +#~ msgstr "Maak het concreet" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:422 +#~ msgid "participant.modal.refine.info.title.generic" +#~ msgstr "\"Verfijnen\" is binnenkort beschikbaar" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:442 +#~ msgid "participant.modal.refine.info.title" +#~ msgstr "Functie binnenkort beschikbaar" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:124 +#~ msgid "participant.refine.go.deeper" +#~ msgstr "Ga dieper" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:24 +#~ msgid "participant.concrete.artefact.error.description" +#~ msgstr "Er ging iets mis bij het laden van je tekst. Probeer het nog een keer." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:764 +#~ msgid "dashboard.dembrane.concrete.title" +#~ msgstr "Maak het concreet" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:71 +#~ msgid "participant.refine.make.concrete" +#~ msgstr "Maak het concreet" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:712 +#~ msgid "participant.button.refine" +#~ msgstr "Verfijnen" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefact.tsx:303 +#~ msgid "participant.concrete.regenerating.artefact" +#~ msgstr "Nieuwe tekst aan het maken…" + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:826 +#~ msgid "dashboard.dembrane.concrete.topic.select" +#~ msgstr "Kies een concreet onderwerp" + +#. js-lingui-explicit-id +#: src/components/participant/EchoErrorAlert.tsx:21 +#~ msgid "participant.go.deeper.generic.error.message" +#~ msgstr "Dit gesprek kan nu niet dieper. Probeer het straks nog een keer." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +#~ msgid "participant.concrete.artefact.error.title" +#~ msgstr "Er ging iets mis met dit artefact" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:450 +#~ msgid "participant.modal.refine.info.reason" +#~ msgstr "We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven." + +#. js-lingui-explicit-id +#: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" msgstr "Het genereren van een bibliotheek kan tot een uur duren" -#: src/routes/participant/ParticipantPostConversation.tsx:228 +#: src/routes/participant/ParticipantPostConversation.tsx:234 msgid " Submit" msgstr " Verzenden" @@ -96,41 +166,41 @@ msgstr " Afmelden voor meldingen" #~ msgstr "-5s" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:436 -msgid "participant.modal.refine.info.title.go.deeper" -msgstr "Ga dieper" +#: src/components/participant/ParticipantConversationAudio.tsx:422 +msgid "participant.modal.echo.info.title.generic" +msgstr "\"ECHO\" binnenkort beschikbaar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:429 -msgid "participant.modal.refine.info.title.concrete" -msgstr "Maak het concreet" +#: src/components/participant/ParticipantConversationAudio.tsx:436 +msgid "participant.modal.echo.info.title.go.deeper" +msgstr "\"Verkennen\" binnenkort beschikbaar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:422 -msgid "participant.modal.refine.info.title.generic" -msgstr "\"Verfijnen\" is binnenkort beschikbaar" +#: src/components/participant/ParticipantConversationAudio.tsx:429 +msgid "participant.modal.echo.info.title.concrete" +msgstr "\"Verifiëren\" binnenkort beschikbaar" #~ msgid "(for enhanced audio processing)" #~ msgstr "(voor verbeterde audioverwerking)" #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:420 +#: src/components/conversation/SelectAllConfirmationModal.tsx:430 msgid "{0, plural, one {# tag} other {# tags}}" msgstr "{0, plural, one {# tag} other {# tags}}" #. js-lingui-explicit-id #. placeholder {0}: filterNames.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:82 +#: src/components/conversation/SelectAllConfirmationModal.tsx:83 msgid "select.all.modal.tags" msgstr "{0, plural, one {Tag:} other {Tags:}}" #. placeholder {0}: isAssistantTyping ? "Assistant is typing..." : "Thinking..." -#. placeholder {0}: selectedOption.transitionMessage #. placeholder {0}: selectedOption.transitionDescription -#: src/routes/project/chat/ProjectChatRoute.tsx:583 +#. placeholder {0}: selectedOption.transitionMessage +#: src/routes/project/chat/ProjectChatRoute.tsx:594 #: src/components/settings/FontSettingsCard.tsx:49 -#: src/components/settings/FontSettingsCard.tsx:50 -#: src/components/project/ProjectPortalEditor.tsx:433 +#: src/components/settings/FontSettingsCard.tsx:51 +#: src/components/project/ProjectPortalEditor.tsx:472 #: src/components/chat/References.tsx:29 msgid "{0}" msgstr "{0}" @@ -140,7 +210,7 @@ msgstr "{0}" #. js-lingui-explicit-id #. placeholder {0}: result.added.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:454 +#: src/components/conversation/SelectAllConfirmationModal.tsx:467 msgid "select.all.modal.added.count" msgstr "{0} toegevoegd" @@ -155,11 +225,11 @@ msgstr "{0} Gesprekken • Bewerkt {1}" #. js-lingui-explicit-id #. placeholder {0}: reallySkipped.length -#: src/components/conversation/SelectAllConfirmationModal.tsx:460 +#: src/components/conversation/SelectAllConfirmationModal.tsx:478 msgid "select.all.modal.not.added.count" msgstr "{0} niet toegevoegd" -#: src/components/chat/ChatModeBanner.tsx:61 +#: src/components/chat/ChatModeBanner.tsx:51 msgid "{conversationCount} selected" msgstr "{conversationCount} geselecteerd" @@ -170,14 +240,14 @@ msgstr "{conversationCount} geselecteerd" #~ msgstr "{diffInHours} uur geleden" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:229 +#: src/routes/project/library/ProjectLibrary.tsx:228 msgid "library.conversations.to.be.analyzed" msgstr "{finishedConversationsCount, plural, one {Momenteel is # gesprek klaar om te worden geanalyseerd.} other {Momenteel zijn # gesprekken klaar om te worden geanalyseerd.}}" #~ msgid "{minutes} minutes and {seconds} seconds" #~ msgstr "{minutes} minuten en {seconds} seconden" -#: src/components/report/ReportRenderer.tsx:76 +#: src/components/report/ReportRenderer.tsx:77 msgid "{readingNow} reading now" msgstr "{readingNow} leest nu" @@ -185,7 +255,7 @@ msgstr "{readingNow} leest nu" #~ msgstr "{seconds} seconden" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:235 +#: src/routes/project/library/ProjectLibrary.tsx:234 msgid "library.conversations.still.processing" msgstr "{0} worden nog verwerkt." @@ -216,21 +286,21 @@ msgstr "+{hiddenCount} gesprekken" msgid "0 Aspects" msgstr "0 Aspecten" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:557 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 msgid "1. You provide a URL where you want to receive notifications" -msgstr "" +msgstr "1. Je geeft een URL op waar je meldingen wilt ontvangen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:562 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:759 msgid "2. When a conversation event happens, we automatically send the conversation data to your URL" -msgstr "" +msgstr "2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:568 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:765 msgid "3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)" -msgstr "" +msgstr "3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:185 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:380 msgid "A friendly name to identify this webhook" -msgstr "" +msgstr "Een vriendelijke naam om dit webhook te identificeren" #: src/components/settings/TwoFactorSettingsCard.tsx:176 msgid "Account password" @@ -244,17 +314,17 @@ msgstr "Actie door" msgid "Action On" msgstr "Actie op" -#: src/components/project/ProjectDangerZone.tsx:82 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:754 +#: src/components/project/ProjectDangerZone.tsx:83 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:980 msgid "Actions" msgstr "Acties" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:403 +#: src/components/conversation/SelectAllConfirmationModal.tsx:413 msgid "select.all.modal.loading.filters" msgstr "Actieve filters" -#: src/routes/participant/ParticipantPostConversation.tsx:179 +#: src/routes/participant/ParticipantPostConversation.tsx:177 msgid "Add" msgstr "Toevoegen" @@ -262,7 +332,7 @@ msgstr "Toevoegen" msgid "Add additional context (Optional)" msgstr "Voeg extra context toe (Optioneel)" -#: src/components/participant/ParticipantInitiateForm.tsx:108 +#: src/components/participant/ParticipantInitiateForm.tsx:118 msgid "Add all that apply" msgstr "Vink aan wat van toepassing is" @@ -270,11 +340,11 @@ msgstr "Vink aan wat van toepassing is" #~ msgstr "Voeg context toe aan document" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:215 +#: src/components/conversation/SelectAllConfirmationModal.tsx:216 msgid "select.all.modal.title.add" msgstr "Gesprekken toevoegen aan context" -#: src/components/project/ProjectPortalEditor.tsx:127 +#: src/components/project/ProjectPortalEditor.tsx:140 msgid "Add key terms or proper nouns to improve transcript quality and accuracy." msgstr "Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren." @@ -282,7 +352,7 @@ msgstr "Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid msgid "Add new recordings to this project. Files you upload here will be processed and appear in conversations." msgstr "Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken." -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tag" msgstr "Trefwoord toevoegen" @@ -291,7 +361,7 @@ msgstr "Trefwoord toevoegen" msgid "add.tag.filter.modal.title" msgstr "Tag toevoegen aan filters" -#: src/components/project/ProjectTagsInput.tsx:257 +#: src/components/project/ProjectTagsInput.tsx:260 msgid "Add Tags" msgstr "Trefwoorden toevoegen" @@ -300,65 +370,69 @@ msgstr "Trefwoorden toevoegen" msgid "add.tag.filter.modal.add" msgstr "Toevoegen aan filters" -#: src/components/conversation/ConversationAccordion.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:163 msgid "Add to this chat" msgstr "Voeg toe aan dit gesprek" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:165 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:720 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:243 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:946 msgid "Add Webhook" -msgstr "" +msgstr "Webhook toevoegen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:804 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1030 msgid "Add Your First Webhook" -msgstr "" +msgstr "Voeg uw eerste webhook toe" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:499 +#: src/components/conversation/SelectAllConfirmationModal.tsx:525 msgid "select.all.modal.added" msgstr "Toegevoegd" #~ msgid "Added context" #~ msgstr "Context toegevoegd" -#: src/routes/participant/ParticipantPostConversation.tsx:187 +#: src/routes/participant/ParticipantPostConversation.tsx:192 msgid "Added emails" msgstr "Toegevoegde e-mails" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:278 +#: src/components/conversation/SelectAllConfirmationModal.tsx:280 msgid "select.all.modal.add.without.filters" msgstr "<0>{totalCount, plural, one {# gesprek} other {# gesprekken}} toevoegen aan de chat" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:266 +#: src/components/conversation/SelectAllConfirmationModal.tsx:268 msgid "select.all.modal.add.with.filters" msgstr "<0>{totalCount, plural, one {# gesprek} other {# gesprekken}} toevoegen met de volgende filters:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:305 +#: src/components/conversation/SelectAllConfirmationModal.tsx:307 msgid "select.all.modal.add.without.filters.more" msgstr "<0>{totalCount, plural, one {# extra gesprek} other {# extra gesprekken}} toevoegen" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:293 +#: src/components/conversation/SelectAllConfirmationModal.tsx:295 msgid "select.all.modal.add.with.filters.more" msgstr "<0>{totalCount, plural, one {# extra gesprek} other {# extra gesprekken}} toevoegen met de volgende filters:" -#: src/routes/project/chat/ProjectChatRoute.tsx:688 +#: src/routes/project/chat/ProjectChatRoute.tsx:704 msgid "Adding Context:" msgstr "Context toevoegen:" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:367 +#: src/components/conversation/SelectAllConfirmationModal.tsx:377 msgid "select.all.modal.loading.title" msgstr "Gesprekken toevoegen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:703 +#: src/components/settings/FontSizeSettingsCard.tsx:72 +msgid "Adjust the base font size for the interface" +msgstr "Pas de basislettergrootte voor de interface aan" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:929 msgid "Advanced" -msgstr "" +msgstr "Geavanceerd" -#: src/components/project/ProjectPortalEditor.tsx:545 +#: src/components/project/ProjectPortalEditor.tsx:612 msgid "Advanced (Tips and best practices)" msgstr "Geavanceerd (Tips en best practices)" @@ -366,7 +440,7 @@ msgstr "Geavanceerd (Tips en best practices)" #~ msgid "Advanced (Tips and tricks)" #~ msgstr "Geavanceerd (Tips en trucs)" -#: src/components/project/ProjectPortalEditor.tsx:1055 +#: src/components/project/ProjectPortalEditor.tsx:1148 msgid "Advanced Settings" msgstr "Geavanceerde instellingen" @@ -391,14 +465,14 @@ msgstr "Alle gesprekken" #~ msgid "All documents are uploaded and ready now. What research question are you interested in asking? Optionally, you can now open an individual analysis chat for each document." #~ msgstr "Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen." -#: src/components/dropzone/UploadConversationDropzone.tsx:795 +#: src/components/dropzone/UploadConversationDropzone.tsx:826 msgid "All files were uploaded successfully." msgstr "Alle bestanden zijn succesvol geüpload." #~ msgid "All Insights" #~ msgstr "Alle insights" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:44 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:45 msgid "Allow participants using the link to start new conversations" msgstr "Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten" @@ -406,28 +480,28 @@ msgstr "Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starte msgid "Almost there" msgstr "Bijna klaar" -#: src/components/conversation/ConversationAccordion.tsx:154 +#: src/components/conversation/ConversationAccordion.tsx:158 msgid "Already added to this chat" msgstr "Al toegevoegd aan dit gesprek" -#: src/components/conversation/SelectAllConfirmationModal.tsx:122 +#: src/components/conversation/SelectAllConfirmationModal.tsx:123 msgid "Already in context" msgstr "Al in context" #. placeholder {0}: participantCount !== undefined ? participantCount : t`loading...` #. placeholder {1}: participantCount === 1 ? "" : "s" -#: src/routes/project/report/ProjectReportRoute.tsx:321 +#: src/routes/project/report/ProjectReportRoute.tsx:330 msgid "An email notification will be sent to {0} participant{1}. Do you want to proceed?" msgstr "Een e-mail melding wordt naar {0} deelnemer{1} verstuurd. Wilt u doorgaan?" #~ msgid "An email Notification will be sent to {0} participant{1}. Do you want to proceed?" #~ msgstr "Een e-mail melding wordt naar {0} deelnemer{1} verstuurd. Wilt u doorgaan?" -#: src/routes/participant/ParticipantStart.tsx:36 +#: src/routes/participant/ParticipantStart.tsx:40 msgid "An error occurred while loading the Portal. Please contact the support team." msgstr "Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam." -#: src/routes/project/chat/ProjectChatRoute.tsx:627 +#: src/routes/project/chat/ProjectChatRoute.tsx:641 msgid "An error occurred." msgstr "Er is een fout opgetreden." @@ -465,24 +539,28 @@ msgstr "" #~ msgstr "Analyseer!" #. js-lingui-explicit-id -#: src/components/announcement/AnnouncementDrawerHeader.tsx:23 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:24 msgid "announcements" -msgstr "" +msgstr "meldingen" #: src/components/announcement/AnnouncementDrawerHeader.tsx:23 #~ msgid "Announcements" #~ msgstr "Meldingen" +#: src/components/project/ProjectPortalEditor.tsx:1171 +msgid "Anonymize Transcripts" +msgstr "Transcripten anoniem maken" + #~ msgid "Anonymous Participant" #~ msgstr "Anonieme deelnemer" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:427 +#: src/components/participant/verify/VerifyArtefact.tsx:447 msgid "participant.concrete.action.button.approve" msgstr "Goedkeuren" #. js-lingui-explicit-id -#: src/components/conversation/VerifiedArtefactsSection.tsx:114 +#: src/components/conversation/VerifiedArtefactsSection.tsx:123 msgid "conversation.verified.approved" msgstr "Goedgekeurd" @@ -490,11 +568,11 @@ msgstr "Goedgekeurd" #~ msgstr "Ben je er klaar voor? Druk dan op \"Klaar om te beginnen\"." #. placeholder {0}: webhook.name -#: src/components/project/webhooks/WebhookSettingsCard.tsx:473 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:669 msgid "Are you sure you want to delete the webhook \"{0}\"? This action cannot be undone." -msgstr "" +msgstr "Weet je zeker dat je de webhook \"{0}\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt." -#: src/components/conversation/ConversationDangerZone.tsx:25 +#: src/components/conversation/ConversationDangerZone.tsx:26 msgid "Are you sure you want to delete this conversation? This action cannot be undone." msgstr "Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt." @@ -504,7 +582,7 @@ msgstr "Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan #~ msgid "Are you sure you want to delete this project?" #~ msgstr "Weet je zeker dat je dit project wilt verwijderen?" -#: src/components/project/ProjectDangerZone.tsx:168 +#: src/components/project/ProjectDangerZone.tsx:172 msgid "Are you sure you want to delete this project? This action cannot be undone." msgstr "Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt." @@ -514,12 +592,12 @@ msgstr "Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan #~ msgid "Are you sure you want to delete this tag?" #~ msgstr "Weet je zeker dat je dit trefwoord wilt verwijderen?" -#: src/components/project/ProjectTagsInput.tsx:74 +#: src/components/project/ProjectTagsInput.tsx:75 msgid "Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it." msgstr "Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:156 +#: src/components/participant/ParticipantConversationText.tsx:158 msgid "participant.modal.finish.message.text.mode" msgstr "Weet je zeker dat je het wilt afmaken?" @@ -533,7 +611,7 @@ msgstr "Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje d #~ msgid "Are you sure you want to generate the library? This will take a while." #~ msgstr "Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:155 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:157 msgid "Are you sure you want to regenerate the summary? You will lose the current summary." msgstr "Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting." @@ -541,30 +619,30 @@ msgstr "Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de #~ msgstr "Weet je zeker dat je wilt stoppen met opnemen?" #: src/components/participant/verify/VerifyArtefact.tsx:132 -msgid "Artefact approved successfully!" -msgstr "Artefact succesvol goedgekeurd!" +#~ msgid "Artefact approved successfully!" +#~ msgstr "Artefact succesvol goedgekeurd!" #: src/components/participant/verify/VerifyArtefact.tsx:242 -msgid "Artefact reloaded successfully!" -msgstr "Artefact succesvol opnieuw geladen!" +#~ msgid "Artefact reloaded successfully!" +#~ msgstr "Artefact succesvol opnieuw geladen!" #: src/components/participant/verify/VerifyArtefact.tsx:174 -msgid "Artefact revised successfully!" -msgstr "Artefact succesvol herzien!" +#~ msgid "Artefact revised successfully!" +#~ msgstr "Artefact succesvol herzien!" #: src/components/participant/verify/VerifyArtefact.tsx:212 -msgid "Artefact updated successfully!" -msgstr "Artefact succesvol bijgewerkt!" +#~ msgid "Artefact updated successfully!" +#~ msgstr "Artefact succesvol bijgewerkt!" #: src/components/conversation/VerifiedArtefactsSection.tsx:93 -msgid "artefacts" -msgstr "Artefacten" +#~ msgid "artefacts" +#~ msgstr "Artefacten" #: src/components/conversation/VerifiedArtefactsSection.tsx:88 -msgid "Artefacts" -msgstr "Artefacten" +#~ msgid "Artefacts" +#~ msgstr "Artefacten" -#: src/components/project/ProjectSidebar.tsx:141 +#: src/components/project/ProjectSidebar.tsx:148 msgid "Ask" msgstr "Stel vraag" @@ -577,13 +655,17 @@ msgstr "Stel vraag" #~ msgid "Ask AI" #~ msgstr "Vraag AI" -#: src/components/project/ProjectPortalEditor.tsx:482 +#: src/components/project/ProjectPortalEditor.tsx:551 +msgid "Ask for Email?" +msgstr "Vraag om e-mail?" + +#: src/components/project/ProjectPortalEditor.tsx:522 msgid "Ask for Name?" msgstr "Vraag om naam?" #: src/components/project/ProjectPortalEditor.tsx:495 -msgid "Ask participants to provide their name when they start a conversation" -msgstr "Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten" +#~ msgid "Ask participants to provide their name when they start a conversation" +#~ msgstr "Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten" #~ msgid "Ask Question" #~ msgstr "Stel Vraag" @@ -605,14 +687,18 @@ msgstr "Aspecten" #~ msgstr "Er moet minstens één onderwerp zijn geselecteerd om Dembrane Verify in te schakelen." #: src/components/project/ProjectPortalEditor.tsx:879 -msgid "At least one topic must be selected to enable Make it concrete" -msgstr "Selecteer minimaal één onderwerp om Maak het concreet aan te zetten" +#~ msgid "At least one topic must be selected to enable Make it concrete" +#~ msgstr "Selecteer minimaal één onderwerp om Maak het concreet aan te zetten" + +#: src/components/project/ProjectPortalEditor.tsx:955 +msgid "At least one topic must be selected to enable Verify" +msgstr "Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten" #~ msgid "Attach as many documents as you like to analyse" #~ msgstr "Voeg zoveel documenten toe als je wilt analyseren" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:539 +#: src/components/participant/ParticipantConversationAudio.tsx:545 msgid "participant.modal.interruption.issue.message" msgstr "Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken." @@ -643,83 +729,103 @@ msgstr "Auditlogboeken geëxporteerd naar CSV" msgid "Audit logs exported to JSON" msgstr "Auditlogboeken geëxporteerd naar JSON" -#: src/routes/auth/Login.tsx:209 +#: src/routes/auth/Login.tsx:210 #: src/components/settings/TwoFactorSettingsCard.tsx:231 #: src/components/settings/TwoFactorSettingsCard.tsx:381 msgid "Authenticator code" msgstr "Authenticator-code" +#: src/components/project/ProjectPortalEditor.tsx:1235 +msgid "Auto-generate titles" +msgstr "Automatisch titels genereren" + +#: src/components/project/ProjectPortalEditor.tsx:1213 +msgid "Auto-generate Titles" +msgstr "Automatisch titels genereren" + +#: src/components/conversation/ConversationEdit.tsx:341 +msgid "Auto-generated or enter manually" +msgstr "Automatisch gegenereerd of handmatig invoeren" + #: src/components/conversation/AutoSelectConversations.tsx:131 msgid "Auto-select" msgstr "Automatisch selecteren" -#: src/components/conversation/hooks/index.ts:548 +#: src/components/conversation/hooks/index.ts:549 msgid "Auto-select disabled" msgstr "Automatisch selecteren uitgeschakeld" -#: src/components/conversation/hooks/index.ts:406 +#: src/components/conversation/hooks/index.ts:407 msgid "Auto-select enabled" msgstr "Automatisch selecteren ingeschakeld" #~ msgid "Auto-select sources to add to the chat" #~ msgstr "Automatisch selecteren bronnen om toe te voegen aan het gesprek" +#: src/components/project/ProjectPortalEditor.tsx:1220 +msgid "Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one." +msgstr "Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had." + #: src/components/conversation/AutoSelectConversations.tsx:137 msgid "Automatically includes relevant conversations for analysis without manual selection" msgstr "Automatisch relevante gesprekken voor analyse zonder handmatige selectie" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:611 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:837 msgid "Automatically save transcripts to your CRM or database" -msgstr "" +msgstr "Transcripten automatisch opslaan in je CRM of database" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:708 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:934 msgid "Automatically send conversation data to your other tools and services when events occur." -msgstr "" +msgstr "Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden." #: src/components/conversation/AutoSelectConversations.tsx:96 msgid "Available" msgstr "Beschikbaar" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:329 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:366 +msgid "Back" +msgstr "Terug" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:385 +#: src/components/participant/ParticipantOnboardingCards.tsx:392 msgid "participant.button.back.microphone" msgstr "Terug naar microfoon" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:406 -#: src/components/layout/ParticipantHeader.tsx:67 +#: src/components/participant/ParticipantOnboardingCards.tsx:414 +#: src/components/layout/ParticipantHeader.tsx:86 msgid "participant.button.back" msgstr "Terug" -#~ msgid "Back" -#~ msgstr "Terug" - -#: src/components/dropzone/UploadConversationDropzone.tsx:815 +#: src/components/dropzone/UploadConversationDropzone.tsx:848 msgid "Back to Selection" msgstr "Terug naar selectie" -#: src/components/project/ProjectPortalEditor.tsx:541 +#: src/components/project/ProjectPortalEditor.tsx:608 msgid "Basic (Essential tutorial slides)" msgstr "Basis (Alleen essentiële tutorial slides)" -#: src/components/project/ProjectPortalEditor.tsx:447 +#: src/components/project/ProjectPortalEditor.tsx:486 msgid "Basic Settings" msgstr "Basis instellingen" #~ msgid "Begin!" #~ msgstr "Begin!" -#: src/routes/project/report/ProjectReportRoute.tsx:61 -#: src/components/conversation/RetranscribeConversation.tsx:120 -#: src/components/conversation/MoveConversationButton.tsx:140 -#: src/components/chat/ChatModeSelector.tsx:149 -#: src/components/chat/ChatModeBanner.tsx:52 +#: src/routes/project/report/ProjectReportRoute.tsx:63 +#: src/components/project/ProjectPortalEditor.tsx:1174 +#: src/components/project/ProjectPortalEditor.tsx:1216 +#: src/components/conversation/RetranscribeConversation.tsx:135 +#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/chat/ChatModeSelector.tsx:142 +#: src/components/chat/ChatModeBanner.tsx:42 msgid "Beta" msgstr "Bèta" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:570 -#: src/components/project/ProjectPortalEditor.tsx:770 +#: src/components/project/ProjectPortalEditor.tsx:638 +#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Bèta" @@ -729,52 +835,52 @@ msgstr "Bèta" #~ msgid "Big Picture - Themes & patterns" #~ msgstr "Big Picture - Thema’s & patronen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:836 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1062 msgid "Book a call" -msgstr "" +msgstr "Een gesprek boeken" -#: src/components/project/ProjectPortalEditor.tsx:688 +#: src/components/project/ProjectPortalEditor.tsx:761 msgid "Brainstorm Ideas" msgstr "Brainstorm ideeën" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:630 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:856 msgid "Build custom dashboards with real-time conversation data" -msgstr "" +msgstr "Aangepaste dashboards bouwen met realtime conversatiegegevens" -#: src/components/project/ProjectDangerZone.tsx:67 +#: src/components/project/ProjectDangerZone.tsx:68 msgid "By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?" msgstr "Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?" -#: src/routes/project/report/ProjectReportRoute.tsx:332 +#: src/routes/project/report/ProjectReportRoute.tsx:345 #: src/components/settings/TwoFactorSettingsCard.tsx:406 -#: src/components/project/ProjectDangerZone.tsx:150 -#: src/components/project/ProjectDangerZone.tsx:176 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:330 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:483 -#: src/components/dropzone/UploadConversationDropzone.tsx:686 -#: src/components/dropzone/UploadConversationDropzone.tsx:806 -#: src/components/conversation/MoveConversationButton.tsx:216 -#: src/components/conversation/ConversationAccordion.tsx:334 +#: src/components/project/ProjectDangerZone.tsx:152 +#: src/components/project/ProjectDangerZone.tsx:180 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:525 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:679 +#: src/components/dropzone/UploadConversationDropzone.tsx:716 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 +#: src/components/conversation/MoveConversationButton.tsx:231 +#: src/components/conversation/ConversationAccordion.tsx:339 msgid "Cancel" msgstr "Annuleren" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:404 +#: src/components/participant/MicrophoneTest.tsx:428 msgid "participant.mic.settings.modal.second.confirm.cancel" msgstr "Annuleren" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:361 +#: src/components/participant/verify/VerifyArtefact.tsx:377 msgid "participant.concrete.action.button.cancel" msgstr "Annuleren" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:79 +#: src/components/layout/ParticipantHeader.tsx:98 msgid "participant.concrete.instructions.button.cancel" msgstr "Annuleren" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:329 +#: src/components/conversation/SelectAllConfirmationModal.tsx:335 msgid "select.all.modal.cancel" msgstr "Annuleren" @@ -783,7 +889,7 @@ msgstr "Annuleren" msgid "add.tag.filter.modal.cancel" msgstr "Annuleren" -#: src/components/conversation/ConversationAccordion.tsx:156 +#: src/components/conversation/ConversationAccordion.tsx:160 msgid "Cannot add empty conversation" msgstr "Kan geen leeg gesprek toevoegen" @@ -794,16 +900,16 @@ msgstr "Kan geen leeg gesprek toevoegen" msgid "Changes will be saved automatically" msgstr "Wijzigingen worden automatisch opgeslagen" -#: src/components/language/LanguagePicker.tsx:77 +#: src/components/language/LanguagePicker.tsx:78 msgid "Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?" msgstr "Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?" -#: src/routes/project/chat/ProjectChatRoute.tsx:501 -#: src/routes/project/chat/ProjectChatRoute.tsx:506 +#: src/routes/project/chat/ProjectChatRoute.tsx:507 +#: src/routes/project/chat/ProjectChatRoute.tsx:513 msgid "Chat" msgstr "Chat" -#: src/routes/project/chat/ProjectChatRoute.tsx:292 +#: src/routes/project/chat/ProjectChatRoute.tsx:294 msgid "Chat | Dembrane" msgstr "Chat | Dembrane" @@ -813,7 +919,7 @@ msgid "chat.accordion.skeleton.title" msgstr "Chats" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:235 +#: src/components/chat/ChatAccordion.tsx:253 msgid "project.sidebar.chat.title" msgstr "Chats" @@ -828,17 +934,25 @@ msgstr "Controleer microfoontoegang" #~ msgid "Check microphone access" #~ msgstr "Controleer microfoontoegang" -#: src/routes/auth/CheckYourEmail.tsx:11 +#: src/routes/auth/CheckYourEmail.tsx:12 msgid "Check your email" msgstr "Controleer je email" #: src/routes/participant/ParticipantPostConversation.tsx:179 -msgid "Checking..." -msgstr "Controleren..." +#~ msgid "Checking..." +#~ msgstr "Controleren..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:277 +#: src/components/settings/WhitelabelLogoCard.tsx:141 +msgid "Choose a logo file" +msgstr "Een logo-bestand kiezen" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:335 +msgid "Choose from your other projects" +msgstr "Kiezen uit je andere projecten" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:472 msgid "Choose when you want to receive notifications" -msgstr "" +msgstr "Kiezen wanneer je meldingen wilt ontvangen" #: src/components/settings/FontSettingsCard.tsx:74 msgid "Choose your preferred theme for the interface" @@ -847,34 +961,42 @@ msgstr "Kies je favoriete thema voor de interface" #~ msgid "Citing the following sources" #~ msgstr "Citeert de volgende bronnen" -#: src/components/dropzone/UploadConversationDropzone.tsx:665 +#: src/components/dropzone/UploadConversationDropzone.tsx:691 msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Klik op \"Upload bestanden\" wanneer je klaar bent om de upload te starten." #: src/routes/project/HostGuidePage.tsx:1385 msgid "Click to edit" -msgstr "" +msgstr "Klik om te bewerken" #: src/components/conversation/ConversationLinks.tsx:155 msgid "Click to see all {totalCount} conversations" msgstr "Klik om alle {totalCount} gesprekken te zien" -#: src/components/project/ProjectDangerZone.tsx:156 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:282 +msgid "Clone from another project" +msgstr "Klonen vanuit een ander project" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:242 +msgid "Clone from Project" +msgstr "Klonen vanuit project" + +#: src/components/project/ProjectDangerZone.tsx:159 msgid "Clone project" msgstr "Project klonen" -#: src/components/project/ProjectDangerZone.tsx:95 -#: src/components/project/ProjectDangerZone.tsx:110 +#: src/components/project/ProjectDangerZone.tsx:96 +#: src/components/project/ProjectDangerZone.tsx:112 msgid "Clone Project" msgstr "Project klonen" -#: src/components/dropzone/UploadConversationDropzone.tsx:806 +#: src/components/dropzone/UploadConversationDropzone.tsx:838 #: src/components/conversation/ConversationLinks.tsx:107 msgid "Close" msgstr "Sluiten" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:661 +#: src/components/conversation/SelectAllConfirmationModal.tsx:698 msgid "select.all.modal.close" msgstr "Sluiten" @@ -882,9 +1004,9 @@ msgstr "Sluiten" msgid "Collection" msgstr "Collectie" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:606 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:832 msgid "Common use cases:" -msgstr "" +msgstr "Algemene toepassingen:" #: src/components/chat/templates.ts:42 msgid "Compare & Contrast" @@ -893,16 +1015,16 @@ msgstr "Vergelijk" #~ msgid "Compare and contrast the following items provided in the context." #~ msgstr "Vergelijk en contrast de volgende items die in de context zijn verstrekt. " -#: src/components/dropzone/UploadConversationDropzone.tsx:749 +#: src/components/dropzone/UploadConversationDropzone.tsx:780 msgid "Complete" msgstr "Voltooid" -#: src/components/project/ProjectPortalEditor.tsx:817 +#: src/components/project/ProjectPortalEditor.tsx:893 msgid "Concrete Topics" msgstr "Concreet maken" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:409 +#: src/components/participant/MicrophoneTest.tsx:438 msgid "participant.mic.settings.modal.second.confirm.button" msgstr "Doorgaan" @@ -911,12 +1033,12 @@ msgstr "Doorgaan" msgid "Confirm New Password" msgstr "Bevestig nieuw wachtwoord" -#: src/routes/auth/Register.tsx:104 -#: src/routes/auth/Register.tsx:107 +#: src/routes/auth/Register.tsx:109 +#: src/routes/auth/Register.tsx:113 msgid "Confirm Password" msgstr "Bevestig wachtwoord" -#: src/routes/project/report/ProjectReportRoute.tsx:318 +#: src/routes/project/report/ProjectReportRoute.tsx:326 msgid "Confirm Publishing" msgstr "Publiceren bevestigen" @@ -924,7 +1046,7 @@ msgstr "Publiceren bevestigen" msgid "Confirm your password to generate a new secret for your authenticator app." msgstr "Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren." -#: src/components/report/ReportModalNavigationButton.tsx:60 +#: src/components/report/ReportModalNavigationButton.tsx:61 msgid "Connecting to report services..." msgstr "Verbinding maken met rapportservices..." @@ -942,7 +1064,7 @@ msgstr "Verbinding ongezond" #~ msgid "Contact your sales representative to activate this feature today!" #~ msgstr "Neem contact op met je verkoper om deze functie vandaag te activeren!" -#: src/components/project/ProjectBasicEdit.tsx:121 +#: src/components/project/ProjectBasicEdit.tsx:123 msgid "Context" msgstr "Context" @@ -955,8 +1077,8 @@ msgstr "Context toegevoegd:" #~ msgstr "Contextlimiet bereikt" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:393 -#: src/components/participant/MicrophoneTest.tsx:383 +#: src/components/participant/ParticipantOnboardingCards.tsx:401 +#: src/components/participant/MicrophoneTest.tsx:407 msgid "participant.button.continue" msgstr "Doorgaan" @@ -966,7 +1088,7 @@ msgstr "Doorgaan" #~ msgid "conversation" #~ msgstr "gesprek" -#: src/components/conversation/hooks/index.ts:407 +#: src/components/conversation/hooks/index.ts:408 msgid "Conversation added to chat" msgstr "Gesprek toegevoegd aan chat" @@ -984,7 +1106,7 @@ msgstr "Gesprek beëindigd" #~ msgid "Conversation processing" #~ msgstr "Gesprek wordt verwerkt" -#: src/components/conversation/hooks/index.ts:549 +#: src/components/conversation/hooks/index.ts:550 msgid "Conversation removed from chat" msgstr "Gesprek verwijderd uit chat" @@ -993,13 +1115,13 @@ msgstr "Gesprek verwijderd uit chat" msgid "Conversation Status" msgstr "Gespreksstatus" -#: src/components/report/CreateReportForm.tsx:127 +#: src/components/report/CreateReportForm.tsx:128 msgid "Conversation Status Details" msgstr "Gespreksstatusdetails" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:583 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:806 msgid "Conversation tags" -msgstr "" +msgstr "Gesprekslabels" #~ msgid "conversation.accordion.skeleton.title" #~ msgstr "Gesprekken" @@ -1007,11 +1129,11 @@ msgstr "" #~ msgid "conversation.linking_conversations.deleted" #~ msgstr "De bron is verwijderd" -#: src/components/report/CreateReportForm.tsx:116 +#: src/components/report/CreateReportForm.tsx:117 msgid "conversations" msgstr "gesprekken" -#: src/components/conversation/ConversationAccordion.tsx:1052 +#: src/components/conversation/ConversationAccordion.tsx:1051 msgid "Conversations" msgstr "Gesprekken" @@ -1025,32 +1147,38 @@ msgstr "Gesprekken" #. placeholder {0}: cooldown.verify.formattedTime #. placeholder {0}: cooldown.echo.formattedTime #: src/components/participant/refine/RefineSelection.tsx:86 -#: src/components/participant/refine/RefineSelection.tsx:137 +#: src/components/participant/refine/RefineSelection.tsx:138 msgid "participant.refine.cooling.down" msgstr "Even afkoelen. Beschikbaar over {0}" #: src/components/settings/TwoFactorSettingsCard.tsx:431 -#: src/components/project/ProjectQRCode.tsx:125 -#: src/components/conversation/CopyConversationTranscript.tsx:47 +#: src/components/project/ProjectQRCode.tsx:183 +#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:17 msgid "Copied" msgstr "Gekopieerd" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:869 +#: src/components/conversation/ConversationEdit.tsx:85 +msgid "Copied from original conversation" +msgstr "Gekopieerd van het originele gesprek" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1095 msgid "Copied!" -msgstr "" +msgstr "Gekopieerd!" +#: src/components/conversation/ConversationEdit.tsx:45 #: src/components/common/CopyRichTextIconButton.tsx:29 #: src/components/common/CopyIconButton.tsx:8 msgid "Copy" msgstr "Kopieer" -#: src/components/project/ProjectQRCode.tsx:125 +#: src/components/project/ProjectQRCode.tsx:183 msgid "Copy link" msgstr "Kopieer link" -#: src/routes/project/report/ProjectReportRoute.tsx:198 +#: src/routes/project/report/ProjectReportRoute.tsx:201 msgid "Copy link to share this report" msgstr "Kopieer link om dit rapport te delen" @@ -1059,17 +1187,17 @@ msgstr "Kopieer link om dit rapport te delen" msgid "Copy secret" msgstr "Geheim kopiëren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:145 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:146 msgid "Copy Summary" msgstr "Kopieer samenvatting" -#: src/components/conversation/CopyConversationTranscript.tsx:48 +#: src/components/conversation/CopyConversationTranscript.tsx:49 msgid "Copy to clipboard" msgstr "Kopieer naar clipboard" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:871 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1097 msgid "Copy to Clipboard" -msgstr "" +msgstr "Kopieer naar klembord" #~ msgid "Copy transcript" #~ msgstr "Kopieer transcript" @@ -1078,17 +1206,21 @@ msgstr "" msgid "Copying..." msgstr "Kopieren..." -#: src/routes/project/ProjectsHome.tsx:137 +#: src/routes/project/ProjectsHome.tsx:139 msgid "Create" msgstr "Maak" #~ msgid "Create a new session" #~ msgstr "Maak een nieuwe sessie aan" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:308 +msgid "Create a new webhook from scratch" +msgstr "Een nieuwe webhook vanaf nul maken" + #~ msgid "Create a new workspace" #~ msgstr "Maak een nieuwe werkruimte aan" -#: src/routes/auth/Register.tsx:57 +#: src/routes/auth/Register.tsx:58 msgid "Create an Account" msgstr "Maak een account aan" @@ -1101,7 +1233,7 @@ msgstr "Maak bibliotheek aan" #~ msgstr "Maak bibliotheek aan" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:287 +#: src/routes/project/library/ProjectLibrary.tsx:285 msgid "library.create.view.modal.title" msgstr "Maak nieuwe view aan" @@ -1109,12 +1241,12 @@ msgstr "Maak nieuwe view aan" #~ msgstr "Maak nieuwe view aan" #: src/components/report/ReportModalNavigationButton.tsx:45 -#: src/components/report/CreateReportForm.tsx:161 +#: src/components/report/CreateReportForm.tsx:165 msgid "Create Report" msgstr "Maak rapport" #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:275 +#: src/routes/project/library/ProjectLibrary.tsx:273 msgid "library.create.view" msgstr "Maak view aan" @@ -1122,25 +1254,41 @@ msgstr "Maak view aan" msgid "Create View" msgstr "Maak view aan" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:531 msgid "Create Webhook" -msgstr "" +msgstr "Webhook maken" -#: src/components/conversation/ConversationEdit.tsx:151 +#: src/components/conversation/ConversationEdit.tsx:248 msgid "Created on" msgstr "Gemaakt op" -#: src/components/project/ProjectPortalEditor.tsx:717 +#: src/components/settings/WhitelabelLogoCard.tsx:109 +msgid "Current logo" +msgstr "Huidige logo" + +#: src/components/project/ProjectPortalEditor.tsx:791 msgid "Custom" msgstr "Aangepast" -#: src/components/conversation/DownloadConversationTranscript.tsx:83 +#: src/components/conversation/DownloadConversationTranscript.tsx:91 msgid "Custom Filename" msgstr "Aangepaste bestandsnaam" +#: src/components/settings/WhitelabelLogoCard.tsx:96 +msgid "Custom Logo" +msgstr "Aangepast logo" + +#: src/components/project/ProjectPortalEditor.tsx:1260 +msgid "Custom title prompt" +msgstr "Aangepaste titelprompt" + #~ msgid "Danger Zone" #~ msgstr "Gevarenzone" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:821 +msgid "Dashboard URL (direct link to conversation overview)" +msgstr "Dashboard URL (directe link naar gespreksoverzicht)" + #~ msgid "dashboard.dembrane.verify.description" #~ msgstr "Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken." @@ -1153,40 +1301,40 @@ msgstr "Aangepaste bestandsnaam" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken." -#: src/components/project/ProjectPortalEditor.tsx:657 +#: src/components/project/ProjectPortalEditor.tsx:727 msgid "Default" msgstr "Standaard" -#: src/components/project/ProjectPortalEditor.tsx:537 +#: src/components/project/ProjectPortalEditor.tsx:604 msgid "Default - No tutorial (Only privacy statements)" msgstr "Standaard - Geen tutorial (Alleen privacy verklaringen)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:451 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:490 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:647 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:686 msgid "Delete" msgstr "Verwijder" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:137 +#: src/components/chat/ChatAccordion.tsx:155 msgid "project.sidebar.chat.delete" msgstr "Chat verwijderen" -#: src/components/conversation/ConversationDangerZone.tsx:72 +#: src/components/conversation/ConversationDangerZone.tsx:75 msgid "Delete Conversation" msgstr "Verwijder gesprek" #~ msgid "Delete document" #~ msgstr "Verwijder document" -#: src/components/project/ProjectDangerZone.tsx:104 -#: src/components/project/ProjectDangerZone.tsx:164 -#: src/components/project/ProjectDangerZone.tsx:182 +#: src/components/project/ProjectDangerZone.tsx:106 +#: src/components/project/ProjectDangerZone.tsx:167 +#: src/components/project/ProjectDangerZone.tsx:187 msgid "Delete Project" msgstr "Verwijder project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:467 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:663 msgid "Delete Webhook" -msgstr "" +msgstr "Webhook verwijderen" #: src/components/participant/UserChunkMessage.tsx:68 msgid "Deleted successfully" @@ -1198,8 +1346,8 @@ msgstr "Verwijderd succesvol" #~ msgid "Dembrane ECHO" #~ msgstr "Dembrane ECHO" -#: src/routes/project/chat/ProjectChatRoute.tsx:751 -#: src/routes/project/chat/ProjectChatRoute.tsx:781 +#: src/routes/project/chat/ProjectChatRoute.tsx:768 +#: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." msgstr "Dembrane draait op AI. Check de antwoorden extra goed." @@ -1247,11 +1395,11 @@ msgstr "Tweestapsverificatie uitschakelen" msgid "Disabled" msgstr "Uitgeschakeld" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:637 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:863 msgid "Do I need this?" -msgstr "" +msgstr "Ben ik dit nodig?" -#: src/components/report/ReportRenderer.tsx:14 +#: src/components/report/ReportRenderer.tsx:15 msgid "Do you want to contribute to this project?" msgstr "Wil je bijdragen aan dit project?" @@ -1268,22 +1416,22 @@ msgstr "Wil je op de hoogte blijven?" #~ msgid "Document was deleted" #~ msgstr "Document is verwijderd" -#: src/components/layout/Header.tsx:182 +#: src/components/layout/Header.tsx:207 msgid "Documentation" msgstr "Documentatie" #~ msgid "Documents" #~ msgstr "Documenten" -#: src/components/conversation/DownloadConversationTranscript.tsx:96 +#: src/components/conversation/DownloadConversationTranscript.tsx:106 msgid "Download" msgstr "Downloaden" -#: src/components/project/ProjectExportSection.tsx:19 +#: src/components/project/ProjectExportSection.tsx:23 msgid "Download all conversation transcripts generated for this project." msgstr "Download alle transcripten die voor dit project zijn gegenereerd." -#: src/components/project/ProjectExportSection.tsx:32 +#: src/components/project/ProjectExportSection.tsx:39 msgid "Download All Transcripts" msgstr "Download alle transcripten" @@ -1294,19 +1442,23 @@ msgstr "Downloaden als" #~ msgid "Download audio" #~ msgstr "Download audio" -#: src/components/conversation/ConversationDangerZone.tsx:62 +#: src/components/conversation/ConversationDangerZone.tsx:64 msgid "Download Audio" msgstr "Audio downloaden" -#: src/components/conversation/DownloadConversationTranscript.tsx:25 +#: src/components/project/ProjectQRCode.tsx:194 +msgid "Download QR code" +msgstr "QR code downloaden" + +#: src/components/conversation/DownloadConversationTranscript.tsx:26 msgid "Download transcript" msgstr "Transcript downloaden" -#: src/components/conversation/DownloadConversationTranscript.tsx:78 +#: src/components/conversation/DownloadConversationTranscript.tsx:85 msgid "Download Transcript Options" msgstr "Download transcript opties" -#: src/components/dropzone/UploadConversationDropzone.tsx:560 +#: src/components/dropzone/UploadConversationDropzone.tsx:564 msgid "Drag audio files here or click to select files" msgstr "Sleep audio bestanden hierheen of klik om bestanden te selecteren" @@ -1315,15 +1467,28 @@ msgstr "Sleep audio bestanden hierheen of klik om bestanden te selecteren" #: src/routes/project/HostGuidePage.tsx:1397 msgid "Drag to reorder" -msgstr "" +msgstr "Sleep om te herordenen" -#: src/components/project/ProjectPortalEditor.tsx:465 +#: src/components/conversation/ConversationEdit.tsx:258 +msgid "Duration" +msgstr "Duur" + +#: src/components/project/ProjectPortalEditor.tsx:504 msgid "Dutch" msgstr "Nederlands" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:189 +#: src/components/project/ProjectPortalEditor.tsx:1278 +msgid "e.g. \"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\"" +msgstr "bijvoorbeeld \"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\"" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:384 msgid "e.g., Slack Notifications, Make Workflow" -msgstr "" +msgstr "bijvoorbeeld, Slack meldingen, Make workflow" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantConversationAudio.tsx:730 +msgid "participant.button.echo" +msgstr "ECHO" #~ msgid "ECHO" #~ msgstr "ECHO" @@ -1337,19 +1502,19 @@ msgstr "" #~ msgid "ECHO!" #~ msgstr "ECHO!" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:446 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:642 msgid "Edit" -msgstr "" +msgstr "Bewerken" -#: src/components/conversation/ConversationEdit.tsx:128 +#: src/components/conversation/ConversationEdit.tsx:225 msgid "Edit Conversation" msgstr "Gesprek bewerken" -#: src/components/dropzone/UploadConversationDropzone.tsx:630 +#: src/components/dropzone/UploadConversationDropzone.tsx:650 msgid "Edit file name" msgstr "Bestandsnaam bewerken" -#: src/components/project/ProjectBasicEdit.tsx:78 +#: src/components/project/ProjectBasicEdit.tsx:79 msgid "Edit Project" msgstr "Project bewerken" @@ -1365,16 +1530,16 @@ msgstr "Rapport inhoud bewerken" msgid "report.editor.description" msgstr "Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:163 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:241 msgid "Edit Webhook" -msgstr "" +msgstr "Webhook bewerken" -#: src/routes/project/report/ProjectReportRoute.tsx:298 +#: src/routes/project/report/ProjectReportRoute.tsx:305 msgid "Editing mode" msgstr "Bewerkmode" -#: src/routes/auth/Login.tsx:250 -#: src/routes/auth/Login.tsx:253 +#: src/routes/auth/Login.tsx:251 +#: src/routes/auth/Login.tsx:255 msgid "Email" msgstr "E-mail" @@ -1394,7 +1559,7 @@ msgstr "Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagi msgid "email@work.com" msgstr "email@werk.com" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:88 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:93 msgid "Empty" msgstr "Leeg" @@ -1414,30 +1579,34 @@ msgstr "2FA inschakelen" #~ msgid "Enable Dembrane Verify" #~ msgstr "Dembrane Verify inschakelen" +#: src/components/project/ProjectPortalEditor.tsx:662 +msgid "Enable Explore" +msgstr "Verkennen inschakelen" + #: src/components/project/ProjectPortalEditor.tsx:594 -msgid "Enable Go deeper" -msgstr "Ga dieper aanzetten" +#~ msgid "Enable Go deeper" +#~ msgstr "Ga dieper aanzetten" #: src/components/project/ProjectPortalEditor.tsx:794 -msgid "Enable Make it concrete" -msgstr "Maak het concreet aanzetten" +#~ msgid "Enable Make it concrete" +#~ msgstr "Maak het concreet aanzetten" #: src/routes/project/HostGuidePage.tsx:1563 msgid "Enable participation" -msgstr "" +msgstr "Deelnemen inschakelen" -#: src/components/project/ProjectPortalEditor.tsx:932 +#: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Rapportmeldingen inschakelen" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:777 +#: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.concrete.description" msgstr "Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet." #: src/components/project/ProjectPortalEditor.tsx:916 -msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." -msgstr "Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates." +#~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." +#~ msgstr "Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Echo\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \"ECHO\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze." @@ -1445,19 +1614,31 @@ msgstr "Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wann #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"ECHO\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \"ECHO\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze." +#: src/components/project/ProjectPortalEditor.tsx:645 +msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Explore\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +msgstr "Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \"Verkennen\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken." + #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \"ECHO\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze." #: src/components/project/ProjectPortalEditor.tsx:577 -msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -msgstr "Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \"Go deeper\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken." +#~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#~ msgstr "Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \"Go deeper\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken." + +#: src/components/project/ProjectPortalEditor.tsx:1192 +msgid "Enable transcript anonymization" +msgstr "Transcriptanoniem maken inschakelen" #: src/components/settings/TwoFactorSettingsCard.tsx:360 msgid "Enable two-factor authentication" msgstr "Tweestapsverificatie inschakelen" +#: src/components/project/ProjectPortalEditor.tsx:869 +msgid "Enable Verify" +msgstr "Verifiëren inschakelen" + #: src/components/settings/TwoFactorSettingsCard.tsx:323 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:751 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:977 #: src/components/conversation/AutoSelectConversations.tsx:86 msgid "Enabled" msgstr "Ingeschakeld" @@ -1465,39 +1646,39 @@ msgstr "Ingeschakeld" #~ msgid "End of list • All {0} conversations loaded" #~ msgstr "Einde van de lijst • Alle {0} gesprekken geladen" -#: src/components/project/ProjectPortalEditor.tsx:464 +#: src/components/project/ProjectPortalEditor.tsx:503 msgid "English" msgstr "Engels" -#: src/components/project/ProjectPortalEditor.tsx:134 +#: src/components/project/ProjectPortalEditor.tsx:149 msgid "Enter a key term or proper noun" msgstr "Voer een sleutelterm of eigennamen in" -#: src/components/conversation/RetranscribeConversation.tsx:146 +#: src/components/conversation/RetranscribeConversation.tsx:162 msgid "Enter a name for the new conversation" msgstr "Voer een naam in voor het nieuwe gesprek" -#: src/components/project/ProjectDangerZone.tsx:144 +#: src/components/project/ProjectDangerZone.tsx:145 msgid "Enter a name for your cloned project" msgstr "Voer een naam in voor je nieuwe project" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:264 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:459 msgid "Enter a secret key" -msgstr "" +msgstr "Voer een geheime sleutel in" #: src/components/settings/TwoFactorSettingsCard.tsx:374 msgid "Enter a valid code to turn off two-factor authentication." msgstr "Voer een geldige code in om tweestapsverificatie uit te schakelen." -#: src/components/dropzone/UploadConversationDropzone.tsx:599 +#: src/components/dropzone/UploadConversationDropzone.tsx:607 msgid "Enter filename (without extension)" msgstr "Voer bestandsnaam (zonder extensie) in" -#: src/components/chat/ChatAccordion.tsx:110 +#: src/components/chat/ChatAccordion.tsx:126 msgid "Enter new name for the chat:" msgstr "Voer een nieuwe naam in voor de chat:" -#: src/routes/auth/Login.tsx:95 +#: src/routes/auth/Login.tsx:96 msgid "Enter the 6-digit code from your authenticator app." msgstr "Voer de 6-cijferige code uit je authenticator-app in." @@ -1516,16 +1697,20 @@ msgstr "Voer je wachtwoord in" msgid "Enter your query" msgstr "Voer uw query in" -#: src/components/dropzone/UploadConversationDropzone.tsx:674 -#: src/components/dropzone/UploadConversationDropzone.tsx:777 +#: src/components/conversation/ConversationEdit.tsx:83 +msgid "Entered by the participant on the portal" +msgstr "Ingevoerd door de deelnemer op het portaal" + +#: src/components/dropzone/UploadConversationDropzone.tsx:700 +#: src/components/dropzone/UploadConversationDropzone.tsx:808 msgid "Error" msgstr "Fout" -#: src/components/project/ProjectDangerZone.tsx:130 +#: src/components/project/ProjectDangerZone.tsx:132 msgid "Error cloning project" msgstr "Fout bij het klonen van het project" -#: src/components/report/CreateReportForm.tsx:64 +#: src/components/report/CreateReportForm.tsx:65 msgid "Error creating report" msgstr "Fout bij het maken van het rapport" @@ -1536,47 +1721,47 @@ msgstr "Fout bij laden van meldingen" #~ msgid "Error loading insights" #~ msgstr "Fout bij laden van inzichten" -#: src/routes/project/ProjectRoutes.tsx:41 -#: src/routes/project/ProjectRoutes.tsx:140 +#: src/routes/project/ProjectRoutes.tsx:49 +#: src/routes/project/ProjectRoutes.tsx:153 msgid "Error loading project" msgstr "Fout bij laden van project" #~ msgid "Error loading quotes" #~ msgstr "Fout bij laden van quotes" -#: src/components/conversation/SelectAllConfirmationModal.tsx:130 +#: src/components/conversation/SelectAllConfirmationModal.tsx:131 msgid "Error occurred" msgstr "Fout opgetreden" -#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/UpdateReportModalButton.tsx:91 msgid "Error updating report" msgstr "Fout bij het bijwerken van het rapport" #. placeholder {0}: errorFile.file.name #. placeholder {1}: error.message -#: src/components/dropzone/UploadConversationDropzone.tsx:548 +#: src/components/dropzone/UploadConversationDropzone.tsx:551 msgid "Error uploading \"{0}\": {1}" msgstr "Fout bij het uploaden van \"{0}\": {1}" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:748 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:974 msgid "Events" -msgstr "" +msgstr "Gebeurtenissen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:274 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:469 msgid "Events to Listen For" -msgstr "" +msgstr "Gebeurtenissen om te luisteren naar" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:360 +#: src/components/participant/MicrophoneTest.tsx:379 msgid "participant.alert.microphone.access.success" msgstr "Alles lijkt goed – je kunt doorgaan." #~ msgid "Everything looks good – you can continue." #~ msgstr "Alles lijkt goed – je kunt doorgaan." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:847 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1073 msgid "Example Webhook Payload" -msgstr "" +msgstr "Voorbeeld webhook payload" #~ msgid "Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect]." #~ msgstr "Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect]." @@ -1584,46 +1769,59 @@ msgstr "" #~ msgid "Experimental" #~ msgstr "Experimenteel" -#: src/components/chat/ChatModeSelector.tsx:265 +#: src/components/project/ProjectPortalEditor.tsx:634 +msgid "Explore" +msgstr "Verkennen" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:125 +msgid "participant.echo.explore" +msgstr "Verkennen" + +#: src/components/chat/ChatModeSelector.tsx:273 msgid "Explore themes & patterns across all conversations" msgstr "Ontdek thema's en patronen in al je gesprekken" -#: src/components/chat/ChatModeBanner.tsx:59 +#: src/components/chat/ChatModeBanner.tsx:49 msgid "Exploring {conversationCount} conversations" msgstr "{conversationCount} gesprekken aan het verkennen" #: src/components/settings/AuditLogsCard.tsx:436 -#: src/components/project/ProjectExportSection.tsx:17 +#: src/components/project/ProjectExportSection.tsx:21 msgid "Export" msgstr "Exporteer" -#: src/components/dropzone/UploadConversationDropzone.tsx:751 +#: src/components/dropzone/UploadConversationDropzone.tsx:782 msgid "Failed" msgstr "Mislukt" -#: src/components/conversation/hooks/index.ts:329 +#: src/components/conversation/hooks/index.ts:330 msgid "Failed to add conversation to chat" msgstr "Fout bij het toevoegen van het gesprek aan de chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:321 +#: src/components/conversation/hooks/index.ts:322 msgid "Failed to add conversation to chat{0}" msgstr "Fout bij het toevoegen van het gesprek aan de chat{0}" -#: src/components/conversation/ConversationAccordion.tsx:933 -#: src/components/conversation/ConversationAccordion.tsx:949 +#: src/components/conversation/ConversationAccordion.tsx:925 +#: src/components/conversation/ConversationAccordion.tsx:948 msgid "Failed to add conversations to context" msgstr "Mislukt om gesprekken aan context toe te voegen" #: src/components/participant/verify/VerifyArtefact.tsx:136 -msgid "Failed to approve artefact. Please try again." -msgstr "Artefact kon niet worden goedgekeurd. Probeer het opnieuw." +#~ msgid "Failed to approve artefact. Please try again." +#~ msgstr "Artefact kon niet worden goedgekeurd. Probeer het opnieuw." + +#: src/components/participant/verify/VerifyArtefact.tsx:137 +msgid "Failed to approve outcome. Please try again." +msgstr "Fout bij het goedkeuren van het resultaat. Probeer het opnieuw." #: src/components/common/CopyRichTextIconButton.tsx:20 msgid "Failed to copy chat. Please try again." msgstr "Fout bij het kopiëren van de chat. Probeer het opnieuw." -#: src/components/conversation/CopyConversationTranscript.tsx:25 +#: src/components/conversation/CopyConversationTranscript.tsx:26 msgid "Failed to copy transcript. Please try again." msgstr "Kopiëren van transcript is mislukt. Probeer het nog een keer." @@ -1631,13 +1829,13 @@ msgstr "Kopiëren van transcript is mislukt. Probeer het nog een keer." msgid "Failed to delete response" msgstr "Fout bij het verwijderen van de reactie" -#: src/components/conversation/hooks/index.ts:476 -#: src/components/conversation/hooks/index.ts:482 +#: src/components/conversation/hooks/index.ts:477 +#: src/components/conversation/hooks/index.ts:483 msgid "Failed to disable Auto Select for this chat" msgstr "Fout bij het uitschakelen van het automatisch selecteren voor deze chat" -#: src/components/conversation/hooks/index.ts:325 -#: src/components/conversation/hooks/index.ts:331 +#: src/components/conversation/hooks/index.ts:326 +#: src/components/conversation/hooks/index.ts:332 msgid "Failed to enable Auto Select for this chat" msgstr "Fout bij het inschakelen van het automatisch selecteren voor deze chat" @@ -1649,11 +1847,11 @@ msgstr "Fout bij het inschakelen van het automatisch selecteren voor deze chat" msgid "Failed to finish conversation. Please try again." msgstr "Fout bij het voltooien van het gesprek. Probeer het opnieuw." -#: src/components/participant/verify/VerifySelection.tsx:142 +#: src/components/participant/verify/VerifySelection.tsx:143 msgid "Failed to generate {label}. Please try again." msgstr "Fout bij het genereren van {label}. Probeer het opnieuw." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:88 msgid "Failed to generate the summary. Please try again later." msgstr "Samenvatting maken lukt niet. Probeer het later nog een keer." @@ -1670,9 +1868,9 @@ msgstr "Fout bij het ophalen van meldingen" #~ msgid "Failed to load audio or the audio is not available" #~ msgstr "Het laden van de audio is mislukt of de audio is niet beschikbaar" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:961 msgid "Failed to load webhooks" -msgstr "" +msgstr "Fout bij het laden van webhooks" #: src/components/announcement/hooks/index.ts:338 #: src/components/announcement/hooks/index.ts:351 @@ -1688,30 +1886,38 @@ msgstr "Fout bij het markeren van de melding als gelezen" msgid "Failed to reconnect. Please try reloading the page." msgstr "Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:86 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:87 msgid "Failed to regenerate the summary. Please try again later." msgstr "Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later." -#: src/components/participant/verify/VerifyArtefact.tsx:244 +#: src/components/participant/verify/VerifyArtefact.tsx:245 msgid "Failed to reload. Please try again." msgstr "Opnieuw laden is mislukt. Probeer het opnieuw." -#: src/components/conversation/hooks/index.ts:480 +#: src/components/conversation/hooks/index.ts:481 msgid "Failed to remove conversation from chat" msgstr "Fout bij het verwijderen van het gesprek uit de chat" #. placeholder {0}: error.response?.data?.detail ? `: ${error.response.data.detail}` : "" -#: src/components/conversation/hooks/index.ts:472 +#: src/components/conversation/hooks/index.ts:473 msgid "Failed to remove conversation from chat{0}" msgstr "Fout bij het verwijderen van het gesprek uit de chat{0}" -#: src/components/conversation/hooks/index.ts:647 +#: src/components/settings/WhitelabelLogoCard.tsx:80 +msgid "Failed to remove logo" +msgstr "Fout bij het verwijderen van het logo" + +#: src/components/conversation/hooks/index.ts:648 msgid "Failed to retranscribe conversation. Please try again." msgstr "Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw." #: src/components/participant/verify/VerifyArtefact.tsx:185 -msgid "Failed to revise artefact. Please try again." -msgstr "Artefact kon niet worden herzien. Probeer het opnieuw." +#~ msgid "Failed to revise artefact. Please try again." +#~ msgstr "Artefact kon niet worden herzien. Probeer het opnieuw." + +#: src/components/participant/verify/VerifyArtefact.tsx:186 +msgid "Failed to revise outcome. Please try again." +msgstr "Fout bij het herzien van het resultaat. Probeer het opnieuw." #: src/components/participant/ParticipantConversationAudio.tsx:384 #~ msgid "Failed to start new conversation. Please try again." @@ -1721,43 +1927,51 @@ msgstr "Artefact kon niet worden herzien. Probeer het opnieuw." msgid "Failed to stop recording on device change. Please try again." msgstr "Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw." +#: src/components/settings/WhitelabelLogoCard.tsx:57 +msgid "Failed to upload logo" +msgstr "Fout bij het uploaden van het logo" + #~ msgid "Failed to verify email status. Please try again." #~ msgstr "Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw." #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:442 -msgid "participant.modal.refine.info.title" +msgid "participant.modal.echo.info.title" msgstr "Functie binnenkort beschikbaar" #. placeholder {0}: errorFile.file.name #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:540 +#: src/components/dropzone/UploadConversationDropzone.tsx:543 msgid "File \"{0}\" exceeds the maximum size of {1}." msgstr "Bestand \"{0}\" overschrijdt de maximale grootte van {1}." #. placeholder {0}: errorFile.file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:544 +#: src/components/dropzone/UploadConversationDropzone.tsx:547 msgid "File \"{0}\" has an unsupported format. Only audio files are allowed." msgstr "Bestand \"{0}\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan." #. placeholder {0}: file.name -#: src/components/dropzone/UploadConversationDropzone.tsx:381 +#: src/components/dropzone/UploadConversationDropzone.tsx:382 msgid "File \"{0}\" is not a supported audio format. Only audio files are allowed." msgstr "Bestand \"{0}\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan." #. placeholder {0}: file.name #. placeholder {1}: formatFileSize(file.size) #. placeholder {2}: formatFileSize(MIN_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:412 +#: src/components/dropzone/UploadConversationDropzone.tsx:413 msgid "File \"{0}\" is too small ({1}). Minimum size is {2}." msgstr "Bestand \"{0}\" is te klein ({1}). Minimum grootte is {2}." #. placeholder {0}: formatFileSize(MIN_FILE_SIZE) #. placeholder {1}: formatFileSize(MAX_FILE_SIZE) -#: src/components/dropzone/UploadConversationDropzone.tsx:565 +#: src/components/dropzone/UploadConversationDropzone.tsx:569 msgid "File size: Min {0}, Max {1}, up to {MAX_FILES} files" msgstr "Bestandsgrootte: Min {0}, Max {1}, maximaal {MAX_FILES} bestanden" +#: src/components/conversation/ConversationEdit.tsx:84 +msgid "Filename from uploaded file" +msgstr "Bestandsnaam van het geüploade bestand" + #~ msgid "Filter" #~ msgstr "Filteren" @@ -1783,12 +1997,12 @@ msgid "participant.button.stop.finish" msgstr "Afronden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:236 +#: src/components/participant/ParticipantConversationText.tsx:250 msgid "participant.button.finish.text.mode" msgstr "Voltooien" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:681 +#: src/components/participant/ParticipantConversationAudio.tsx:698 msgid "participant.button.finish" msgstr "Voltooien" @@ -1796,7 +2010,7 @@ msgstr "Voltooien" #~ msgstr "Voltooien" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:145 +#: src/components/participant/ParticipantConversationText.tsx:146 msgid "participant.modal.finish.title.text.mode" msgstr "Gesprek afmaken" @@ -1804,8 +2018,8 @@ msgstr "Gesprek afmaken" msgid "Finished" msgstr "Voltooid" -#: src/routes/auth/Register.tsx:75 -#: src/routes/auth/Register.tsx:77 +#: src/routes/auth/Register.tsx:76 +#: src/routes/auth/Register.tsx:79 msgid "First Name" msgstr "Voornaam" @@ -1818,23 +2032,35 @@ msgstr "Voornaam" #~ msgid "Follow playback" #~ msgstr "Volgen van afspelen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:254 +#: src/components/settings/FontSizeSettingsCard.tsx:68 +msgid "Font Size" +msgstr "Lettergrootte" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:449 msgid "For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification." -msgstr "" +msgstr "Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist." -#: src/routes/auth/Login.tsx:270 +#: src/routes/auth/Login.tsx:276 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: src/components/project/ProjectPortalEditor.tsx:468 +#: src/components/project/ProjectPortalEditor.tsx:507 msgid "French" msgstr "Frans" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:586 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:809 msgid "Full transcript (when available)" -msgstr "" +msgstr "Volledig transcript (wanneer beschikbaar)" -#: src/components/report/CreateReportForm.tsx:80 +#: src/components/conversation/ConversationEdit.tsx:334 +msgid "Generate" +msgstr "Genereren" + +#: src/components/conversation/ConversationEdit.tsx:324 +msgid "Generate a summary first" +msgstr "Genereer eerst een samenvatting" + +#: src/components/report/CreateReportForm.tsx:81 msgid "Generate insights from your conversations" msgstr "Genereer inzichten uit je gesprekken" @@ -1845,15 +2071,15 @@ msgstr "Geheim genereren" #~ msgid "Generate structured meeting notes based on the following discussion points provided in the context." #~ msgstr "Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:198 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:202 msgid "Generate Summary" msgstr "Samenvatting genereren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:91 msgid "Generating the summary. Please wait..." msgstr "Samenvatting wordt gemaakt. Even wachten..." -#: src/components/project/ProjectPortalEditor.tsx:466 +#: src/components/project/ProjectPortalEditor.tsx:505 msgid "German" msgstr "Duits" @@ -1862,7 +2088,7 @@ msgid "Get an immediate reply from Dembrane to help you deepen the conversation. msgstr "Krijg direct een reactie van Dembrane om het gesprek te verdiepen." #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:128 +#: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" msgstr "Krijg direct een reactie van Dembrane om het gesprek te verdiepen." @@ -1873,29 +2099,24 @@ msgstr "Geef me een lijst van 5-10 onderwerpen die worden besproken." #~ msgid "Global Research Question" #~ msgstr "Algemene Onderzoeksvraag" -#: src/routes/settings/UserSettingsRoute.tsx:34 +#: src/routes/settings/UserSettingsRoute.tsx:36 msgid "Go back" msgstr "Ga terug" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:52 +#: src/components/participant/verify/VerifyArtefactError.tsx:51 msgid "participant.concrete.artefact.action.button.go.back" msgstr "Terug" #: src/components/project/ProjectPortalEditor.tsx:566 -msgid "Go deeper" -msgstr "Ga dieper" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:124 -msgid "participant.refine.go.deeper" -msgstr "Ga dieper" +#~ msgid "Go deeper" +#~ msgstr "Ga dieper" #: src/routes/404.tsx:17 msgid "Go home" msgstr "Ga naar home" -#: src/components/conversation/RetranscribeConversation.tsx:100 +#: src/components/conversation/RetranscribeConversation.tsx:115 msgid "Go to new conversation" msgstr "Ga naar nieuw gesprek" @@ -1905,19 +2126,23 @@ msgstr "Ga naar nieuw gesprek" #~ msgid "Grid view" #~ msgstr "Rasterweergave" -#: src/components/conversation/ConversationAccordion.tsx:575 +#: src/components/project/ProjectPortalEditor.tsx:1272 +msgid "Guide how titles are generated. Titles describe the topic of the conversation, not the participant." +msgstr "Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer." + +#: src/components/conversation/ConversationAccordion.tsx:565 msgid "Has verified artifacts" msgstr "Bevat geverifieerde artefacten" #~ msgid "Hello, I will be your research assistant today. To get started please upload the documents you want to analyse." #~ msgstr "Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren." -#: src/components/layout/Header.tsx:194 +#: src/components/layout/Header.tsx:220 msgid "Help us translate" msgstr "Help ons te vertalen" #. placeholder {0}: user.first_name ?? "User" -#: src/components/layout/Header.tsx:160 +#: src/components/layout/Header.tsx:183 msgid "Hi, {0}" msgstr "Hallo, {0}" @@ -1928,10 +2153,14 @@ msgstr "Hallo, {0}" msgid "Hidden" msgstr "Verborgen" -#: src/components/participant/verify/VerifySelection.tsx:114 +#: src/components/participant/verify/VerifySelection.tsx:115 msgid "Hidden gem" msgstr "Verborgen parel" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Hide" +msgstr "Verbergen" + #~ msgid "Hide {0}" #~ msgstr "Verbergen {0}\t" @@ -1952,15 +2181,15 @@ msgstr "Gegevens verbergen" msgid "Hide revision data" msgstr "Revisiegegevens verbergen" -#: src/routes/project/ProjectsHome.tsx:122 +#: src/routes/project/ProjectsHome.tsx:123 msgid "Home" msgstr "Home" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:553 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:750 msgid "How it works:" -msgstr "" +msgstr "Hoe het werkt:" -#: src/components/project/ProjectBasicEdit.tsx:127 +#: src/components/project/ProjectBasicEdit.tsx:129 msgid "" "How would you describe to a colleague what are you trying to accomplish with this project?\n" "* What is the north star goal or key metric\n" @@ -1971,7 +2200,7 @@ msgstr "" "* Hoe ziet succes eruit" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:508 +#: src/components/participant/ParticipantConversationAudio.tsx:510 msgid "participant.button.i.understand" msgstr "Ik begrijp het" @@ -1996,21 +2225,21 @@ msgid "Identify recurring themes, topics, and arguments that appear consistently msgstr "Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 +#: src/components/participant/verify/VerifyInstructions.tsx:44 msgid "participant.concrete.instructions.approve.artefact" msgstr "Keur het artefact goed of pas het aan voordat je doorgaat." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -#~ msgstr "" +#~ msgstr "Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:640 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:866 msgid "If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later." -msgstr "" +msgstr "Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:823 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1049 msgid "If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." -msgstr "" +msgstr "Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking." #~ msgid "In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view." #~ msgstr "Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd." @@ -2021,7 +2250,7 @@ msgstr "" #~ msgid "Inactive" #~ msgstr "Inactief" -#: src/routes/project/report/ProjectReportRoute.tsx:269 +#: src/routes/project/report/ProjectReportRoute.tsx:275 msgid "Include portal link in report" msgstr "Link naar portal in rapport opnemen" @@ -2051,7 +2280,7 @@ msgstr "Inzichten" msgid "Invalid code. Please request a new one." msgstr "Ongeldige code. Vraag een nieuwe aan." -#: src/routes/auth/Login.tsx:167 +#: src/routes/auth/Login.tsx:168 msgid "Invalid credentials." msgstr "Ongeldige inloggegevens." @@ -2081,24 +2310,23 @@ msgstr "Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. V #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 -msgid "participant.concrete.artefact.error.description" -msgstr "Er ging iets mis bij het laden van je tekst. Probeer het nog een keer." +msgid "participant.outcome.error.description" +msgstr "We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren." #: src/components/participant/hooks/useConversationIssueBanner.ts:17 msgid "It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly." msgstr "Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen." -#: src/components/project/ProjectPortalEditor.tsx:469 +#: src/components/project/ProjectPortalEditor.tsx:508 msgid "Italian" msgstr "Italiaans" #~ msgid "Join" #~ msgstr "Aansluiten" -#. placeholder {0}: project?.default_conversation_title ?? "the conversation" #: src/components/project/ProjectQRCode.tsx:103 -msgid "Join {0} on Dembrane" -msgstr "Aansluiten {0} op Dembrane" +#~ msgid "Join {0} on Dembrane" +#~ msgstr "Aansluiten {0} op Dembrane" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -2111,12 +2339,12 @@ msgstr "Gewoon een momentje" msgid "Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account." msgstr "Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren." -#: src/components/project/ProjectPortalEditor.tsx:457 +#: src/components/project/ProjectPortalEditor.tsx:496 msgid "Language" msgstr "Taal" -#: src/routes/auth/Register.tsx:82 #: src/routes/auth/Register.tsx:84 +#: src/routes/auth/Register.tsx:87 msgid "Last Name" msgstr "Achternaam" @@ -2131,13 +2359,13 @@ msgstr "Laatst opgeslagen {0}" msgid "Last Updated" msgstr "Laatst bijgewerkt" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:653 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:879 msgid "Learn more about webhooks" -msgstr "" +msgstr "Meer informatie over webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:263 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:458 msgid "Leave empty to keep existing" -msgstr "" +msgstr "Laat leeg om bestaande te behouden" #: src/components/chat/TemplatesModal.tsx:127 msgid "Let us know!" @@ -2148,7 +2376,7 @@ msgstr "Laat het ons weten!" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 -#: src/components/project/ProjectSidebar.tsx:150 +#: src/components/project/ProjectSidebar.tsx:158 msgid "Library" msgstr "Bibliotheek" @@ -2187,19 +2415,19 @@ msgstr "Link" #~ msgstr "Live" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:326 +#: src/components/participant/MicrophoneTest.tsx:328 msgid "participant.live.audio.level" msgstr "Live audio niveau:" #~ msgid "Live audio level:" #~ msgstr "Live audio level:" -#: src/components/project/ProjectPortalEditor.tsx:1126 +#: src/components/project/ProjectPortalEditor.tsx:1342 msgid "Live Preview" msgstr "Live Voorbeeld" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 +#: src/components/participant/verify/VerifyInstructions.tsx:113 msgid "participant.concrete.instructions.loading" msgstr "Instructies aan het laden…" @@ -2216,7 +2444,7 @@ msgstr "Acties worden geladen..." msgid "participant.concrete.loading.artefact" msgstr "Tekst aan het laden…" -#: src/components/settings/AuditLogsCard.tsx:574 +#: src/components/settings/AuditLogsCard.tsx:571 msgid "Loading audit logs…" msgstr "Auditlogboeken worden geladen…" @@ -2224,70 +2452,68 @@ msgstr "Auditlogboeken worden geladen…" msgid "Loading collections..." msgstr "Collecties worden geladen..." -#: src/components/project/ProjectPortalEditor.tsx:833 +#: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading concrete topics…" msgstr "Concrete onderwerpen aan het laden…" -#: src/components/participant/MicrophoneTest.tsx:313 +#: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." msgstr "Microfoons laden..." -#: src/components/conversation/CopyConversationTranscript.tsx:26 -#: src/components/conversation/CopyConversationTranscript.tsx:45 +#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:46 msgid "Loading transcript..." msgstr "Transcript aan het laden..." #~ msgid "Loading verification topics…" #~ msgstr "Verificatie-onderwerpen worden geladen…" -#: src/routes/project/report/ProjectReportRoute.tsx:325 +#: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "bezig met laden..." -#: src/components/conversation/ConversationAccordion.tsx:113 -#: src/components/conversation/hooks/index.ts:370 +#: src/components/conversation/ConversationAccordion.tsx:117 +#: src/components/conversation/hooks/index.ts:371 msgid "Loading..." msgstr "Bezig met laden..." -#: src/components/participant/verify/VerifySelection.tsx:248 +#: src/components/participant/verify/VerifySelection.tsx:255 msgid "Loading…" msgstr "Bezig met laden…" -#: src/routes/auth/Login.tsx:279 +#: src/routes/auth/Login.tsx:290 msgid "Login" msgstr "Inloggen" -#: src/routes/auth/Login.tsx:57 +#: src/routes/auth/Login.tsx:58 msgid "Login | Dembrane" msgstr "Inloggen | Dembrane" -#: src/routes/auth/Register.tsx:124 +#: src/routes/auth/Register.tsx:136 msgid "Login as an existing user" msgstr "Inloggen als bestaande gebruiker" -#: src/components/layout/Header.tsx:201 +#: src/components/settings/WhitelabelLogoCard.tsx:77 +msgid "Logo removed" +msgstr "Logo verwijderd" + +#: src/components/settings/WhitelabelLogoCard.tsx:54 +msgid "Logo updated successfully" +msgstr "Logo succesvol bijgewerkt" + +#: src/components/layout/Header.tsx:228 msgid "Logout" msgstr "Uitloggen" -#: src/components/conversation/ConversationAccordion.tsx:642 +#: src/components/conversation/ConversationAccordion.tsx:632 msgid "Longest First" msgstr "Langste eerst" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:764 -msgid "dashboard.dembrane.concrete.title" -msgstr "Maak het concreet" - -#. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:71 -msgid "participant.refine.make.concrete" -msgstr "Maak het concreet" - -#: src/components/announcement/AnnouncementDrawerHeader.tsx:51 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:54 msgid "Mark all read" msgstr "Alle als gelezen markeren" -#: src/components/announcement/AnnouncementItem.tsx:148 +#: src/components/announcement/AnnouncementItem.tsx:153 msgid "Mark as read" msgstr "Als gelezen markeren" @@ -2308,47 +2534,47 @@ msgstr "Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw inste #~ msgid "min" #~ msgstr "min" -#: src/components/project/ProjectPortalEditor.tsx:617 +#: src/components/project/ProjectPortalEditor.tsx:686 msgid "Mode" msgstr "Modus" -#: src/components/chat/ChatTemplatesMenu.tsx:199 +#: src/components/chat/ChatTemplatesMenu.tsx:202 msgid "More templates" msgstr "Meer templates" -#: src/components/conversation/MoveConversationButton.tsx:226 -#: src/components/conversation/ConversationAccordion.tsx:344 +#: src/components/conversation/MoveConversationButton.tsx:242 +#: src/components/conversation/ConversationAccordion.tsx:349 msgid "Move" msgstr "Verplaatsen" -#: src/components/conversation/MoveConversationButton.tsx:146 -#: src/components/conversation/ConversationAccordion.tsx:265 +#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/ConversationAccordion.tsx:270 msgid "Move Conversation" msgstr "Verplaats gesprek" -#: src/components/conversation/MoveConversationButton.tsx:142 +#: src/components/conversation/MoveConversationButton.tsx:144 msgid "Move to Another Project" msgstr "Verplaats naar een ander project" -#: src/components/conversation/ConversationAccordion.tsx:262 +#: src/components/conversation/ConversationAccordion.tsx:267 msgid "Move to Project" msgstr "Verplaats naar project" -#: src/components/project/ProjectBasicEdit.tsx:103 -#: src/components/project/webhooks/WebhookSettingsCard.tsx:182 -#: src/components/conversation/ConversationEdit.tsx:161 +#: src/components/project/ProjectBasicEdit.tsx:104 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:377 +#: src/components/conversation/ConversationEdit.tsx:299 msgid "Name" msgstr "Naam" -#: src/components/conversation/ConversationAccordion.tsx:640 +#: src/components/conversation/ConversationAccordion.tsx:630 msgid "Name A-Z" msgstr "Naam A-Z" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:178 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:373 msgid "Name is required" -msgstr "" +msgstr "Naam is verplicht" -#: src/components/conversation/ConversationAccordion.tsx:641 +#: src/components/conversation/ConversationAccordion.tsx:631 msgid "Name Z-A" msgstr "Naam Z-A" @@ -2356,7 +2582,7 @@ msgstr "Naam Z-A" msgid "New" msgstr "Nieuw" -#: src/components/conversation/RetranscribeConversation.tsx:145 +#: src/components/conversation/RetranscribeConversation.tsx:161 msgid "New Conversation Name" msgstr "Nieuwe Gesprek Naam" @@ -2373,32 +2599,32 @@ msgstr "Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd msgid "New Password" msgstr "Nieuw wachtwoord" -#: src/routes/project/ProjectsHome.tsx:90 -#: src/routes/auth/Login.tsx:114 +#: src/routes/project/ProjectsHome.tsx:91 +#: src/routes/auth/Login.tsx:115 msgid "New Project" msgstr "Nieuw project" -#: src/components/conversation/ConversationAccordion.tsx:638 +#: src/components/conversation/ConversationAccordion.tsx:628 msgid "Newest First" msgstr "Nieuwste eerst" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:421 +#: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:134 +#: src/components/participant/ParticipantInitiateForm.tsx:146 msgid "participant.ready.to.begin.button.text" msgstr "Klaar om te beginnen" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:250 +#: src/components/participant/verify/VerifySelection.tsx:257 msgid "participant.concrete.selection.button.next" msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 +#: src/components/participant/verify/VerifyInstructions.tsx:115 msgid "participant.concrete.instructions.button.next" msgstr "Aan de slag" @@ -2406,7 +2632,7 @@ msgstr "Aan de slag" #~ msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:169 +#: src/components/participant/ParticipantConversationText.tsx:170 msgid "participant.button.finish.no.text.mode" msgstr "Nee" @@ -2414,16 +2640,16 @@ msgstr "Nee" msgid "No actions found" msgstr "Geen acties gevonden" -#: src/components/announcement/Announcements.tsx:128 +#: src/components/announcement/Announcements.tsx:130 msgid "No announcements available" msgstr "Geen meldingen beschikbaar" -#: src/components/settings/AuditLogsCard.tsx:633 +#: src/components/settings/AuditLogsCard.tsx:630 msgid "No audit logs match the current filters." msgstr "Geen auditlogboeken komen overeen met de huidige filters." #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:244 +#: src/components/chat/ChatAccordion.tsx:262 msgid "project.sidebar.chat.empty.description" msgstr "Geen chats gevonden. Start een chat met behulp van de \"Vraag\" knop." @@ -2434,11 +2660,11 @@ msgstr "Geen chats gevonden. Start een chat met behulp van de \"Vraag\" knop." msgid "No collections found" msgstr "Geen collecties gevonden" -#: src/components/project/ProjectPortalEditor.tsx:837 +#: src/components/project/ProjectPortalEditor.tsx:913 msgid "No concrete topics available." msgstr "Geen concrete onderwerpen beschikbaar." -#: src/components/conversation/SelectAllConfirmationModal.tsx:126 +#: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" msgstr "Geen inhoud" @@ -2458,16 +2684,16 @@ msgstr "Geen gesprekken beschikbaar om bibliotheek te maken" msgid "No conversations found." msgstr "Geen gesprekken gevonden." -#: src/components/conversation/ConversationAccordion.tsx:1401 +#: src/components/conversation/ConversationAccordion.tsx:1416 msgid "No conversations found. Start a conversation using the participation invite link from the <0><1>project overview." msgstr "Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:650 +#: src/components/conversation/SelectAllConfirmationModal.tsx:683 msgid "select.all.modal.no.conversations" msgstr "Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters." -#: src/components/report/CreateReportForm.tsx:88 +#: src/components/report/CreateReportForm.tsx:89 msgid "No conversations yet" msgstr "Nog geen gesprekken" @@ -2480,16 +2706,16 @@ msgstr "Nog geen gesprekken" #~ msgid "No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy." #~ msgstr "Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren." -#: src/components/participant/verify/VerifyArtefact.tsx:182 +#: src/components/participant/verify/VerifyArtefact.tsx:183 msgid "No new feedback detected yet. Please continue your discussion and try again soon." msgstr "Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort." #. placeholder {0}: search && `with "${search}"` -#: src/components/conversation/MoveConversationButton.tsx:167 +#: src/components/conversation/MoveConversationButton.tsx:175 msgid "No projects found {0}" msgstr "Geen projecten gevonden {0}" -#: src/routes/project/ProjectsHome.tsx:188 +#: src/routes/project/ProjectsHome.tsx:192 msgid "No projects found for search term" msgstr "Geen projecten gevonden voor de zoekterm" @@ -2499,7 +2725,7 @@ msgstr "Geen projecten gevonden voor de zoekterm" #~ msgid "No quotes available. Generate quotes for this conversation by visiting<0><1> the project library." #~ msgstr "Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan." -#: src/components/report/ReportRenderer.tsx:112 +#: src/components/report/ReportRenderer.tsx:116 msgid "No report found" msgstr "Geen rapport gevonden" @@ -2509,27 +2735,26 @@ msgstr "Geen rapport gevonden" #~ msgid "No resources found. Add resources using the button above." #~ msgstr "Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan." -#: src/components/settings/AuditLogsCard.tsx:656 +#: src/components/settings/AuditLogsCard.tsx:653 msgid "No results" msgstr "Geen resultaten" -#: src/components/conversation/ConversationEdit.tsx:207 -#: src/components/conversation/ConversationAccordion.tsx:1314 +#: src/components/conversation/ConversationAccordion.tsx:1328 msgid "No tags found" msgstr "Geen trefwoorden gevonden" -#: src/components/project/ProjectTagsInput.tsx:264 +#: src/components/project/ProjectTagsInput.tsx:267 msgid "No tags have been added to this project yet. Add a tag using the text input above to get started." msgstr "Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:119 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:125 msgid "No Transcript Available" msgstr "Geen transcript beschikbaar" #~ msgid "No transcript available for this conversation." #~ msgstr "Er is geen transcript beschikbaar voor dit gesprek." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:122 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:129 msgid "No transcript exists for this conversation yet. Please check back later." msgstr "Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw." @@ -2540,23 +2765,27 @@ msgstr "Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later #~ msgid "No tutorial (only Privacy statements)" #~ msgstr "Geen tutorial (alleen Privacyverklaring)" -#: src/components/dropzone/UploadConversationDropzone.tsx:390 +#: src/components/dropzone/UploadConversationDropzone.tsx:391 msgid "No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc)." msgstr "Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc)." -#: src/components/participant/verify/VerifySelection.tsx:212 +#: src/components/participant/verify/VerifySelection.tsx:217 msgid "No verification topics are configured for this project." msgstr "Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd." #~ msgid "No verification topics available." #~ msgstr "Geen verificatie-onderwerpen beschikbaar." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:790 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" -msgstr "" +msgstr "Geen webhooks geconfigureerd" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:341 +msgid "No webhooks found" +msgstr "Geen webhooks gevonden" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:518 +#: src/components/conversation/SelectAllConfirmationModal.tsx:545 msgid "select.all.modal.not.added" msgstr "Niet toegevoegd" @@ -2564,32 +2793,36 @@ msgstr "Niet toegevoegd" msgid "Not available" msgstr "Niet beschikbaar" +#: src/components/project/ProjectPortalEditor.tsx:994 +msgid "Notify participants when a report is published." +msgstr "Deelnemers melden wanneer een rapport wordt gepubliceerd." + #~ msgid "Now" #~ msgstr "Nu" -#: src/components/conversation/ConversationAccordion.tsx:639 +#: src/components/conversation/ConversationAccordion.tsx:629 msgid "Oldest First" msgstr "Oudste eerst" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 +#: src/components/participant/verify/VerifyInstructions.tsx:35 msgid "participant.concrete.instructions.revise.artefact" msgstr "Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 +#: src/components/participant/verify/VerifyInstructions.tsx:26 msgid "participant.concrete.instructions.read.aloud" msgstr "Lees de tekst hardop voor en check of het goed voelt." #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:609 +#: src/components/conversation/ConversationAccordion.tsx:599 msgid "conversation.ongoing" msgstr "Actief" #~ msgid "Ongoing" #~ msgstr "Actief" -#: src/components/conversation/OngoingConversationsSummaryCard.tsx:80 +#: src/components/conversation/OngoingConversationsSummaryCard.tsx:81 msgid "Ongoing Conversations" msgstr "Actieve Gesprekken" @@ -2615,13 +2848,17 @@ msgstr "Openen" #~ msgid "Open Documentation" #~ msgstr "Open documentatie" -#: src/components/conversation/OpenForParticipationSummaryCard.tsx:40 +#: src/components/conversation/OpenForParticipationSummaryCard.tsx:41 msgid "Open for Participation?" msgstr "Open voor deelname?" +#: src/components/project/ProjectQRCode.tsx:165 +msgid "Open guide" +msgstr "Open gids" + #: src/components/project/HostGuideDownload.tsx:28 msgid "Open Host Guide" -msgstr "" +msgstr "Open host gids" #. js-lingui-explicit-id #: src/components/participant/PermissionErrorModal.tsx:59 @@ -2631,36 +2868,68 @@ msgstr "Open de probleemoplossingsgids" #~ msgid "Open troubleshooting guide" #~ msgstr "Open de probleemoplossingsgids" -#: src/routes/auth/Login.tsx:241 +#: src/routes/auth/Login.tsx:242 msgid "Open your authenticator app and enter the current six-digit code." msgstr "Open je authenticator-app en voer de huidige zescijferige code in." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:250 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:445 msgid "Optional" -msgstr "" +msgstr "Optioneel" -#: src/components/conversation/ConversationAccordion.tsx:1100 -#: src/components/conversation/ConversationAccordion.tsx:1107 +#: src/components/project/ProjectPortalEditor.tsx:535 +msgid "Optional field on the start page" +msgstr "Optioneel veld op de startpagina" + +#: src/components/project/ProjectPortalEditor.tsx:564 +msgid "Optional field on the thank you page" +msgstr "Optioneel veld op de bedankpagina" + +#: src/components/conversation/ConversationAccordion.tsx:1101 +#: src/components/conversation/ConversationAccordion.tsx:1106 msgid "Options" msgstr "Opties" #~ msgid "Original filename" #~ msgstr "Originele bestandsnaam" +#: src/components/participant/verify/VerifyArtefact.tsx:133 +msgid "Outcome approved successfully!" +msgstr "Resultaat succesvol goedgekeurd!" + +#: src/components/participant/verify/VerifyArtefact.tsx:243 +msgid "Outcome reloaded successfully!" +msgstr "Resultaat succesvol herladen!" + +#: src/components/participant/verify/VerifyArtefact.tsx:175 +msgid "Outcome revised successfully!" +msgstr "Resultaat succesvol herzien!" + +#: src/components/participant/verify/VerifyArtefact.tsx:213 +msgid "Outcome updated!" +msgstr "Resultaat succesvol bijgewerkt!" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:94 +msgid "outcomes" +msgstr "resultaten" + +#: src/components/conversation/VerifiedArtefactsSection.tsx:89 +msgid "Outcomes" +msgstr "Resultaten" + #: src/components/layout/ProjectConversationLayout.tsx:46 -#: src/components/chat/ChatModeSelector.tsx:264 +#: src/components/chat/ChatModeSelector.tsx:272 #: src/components/chat/ChatModeBanner.tsx:35 msgid "Overview" msgstr "Overzicht" -#: src/components/chat/ChatAccordion.tsx:56 +#: src/components/chat/ChatAccordion.tsx:55 msgid "Overview - Themes & patterns" msgstr "Overview - Thema’s & patronen" #~ msgid "Page" #~ msgstr "Pagina" -#: src/components/project/ProjectPortalEditor.tsx:992 +#: src/components/project/ProjectPortalEditor.tsx:1077 msgid "Page Content" msgstr "Pagina inhoud" @@ -2668,22 +2937,30 @@ msgstr "Pagina inhoud" msgid "Page not found" msgstr "Pagina niet gevonden" -#: src/components/project/ProjectPortalEditor.tsx:969 +#: src/components/project/ProjectPortalEditor.tsx:1053 msgid "Page Title" msgstr "Pagina titel" #: src/components/report/ConversationStatusTable.tsx:55 -#: src/components/participant/ParticipantInitiateForm.tsx:44 +#: src/components/participant/ParticipantInitiateForm.tsx:45 msgid "Participant" msgstr "Deelnemer" -#: src/components/project/ProjectPortalEditor.tsx:560 +#: src/components/conversation/ConversationEdit.tsx:271 +msgid "Participant Email" +msgstr "Deelnemer e-mail" + +#: src/components/conversation/ConversationEdit.tsx:273 +msgid "Participant Emails" +msgstr "Deelnemer e-mails" + +#: src/components/project/ProjectPortalEditor.tsx:628 msgid "Participant Features" msgstr "Deelnemer features" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:580 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:803 msgid "Participant name and email" -msgstr "" +msgstr "Deelnemer naam en e-mail" #~ msgid "participant.button.echo" #~ msgstr "Echo" @@ -2793,25 +3070,25 @@ msgstr "" #~ msgid "participant.verify.selection.title" #~ msgstr "Wat wil je concreet maken?" -#: src/components/project/ProjectTagsInput.tsx:242 +#: src/components/project/ProjectTagsInput.tsx:243 msgid "Participants will be able to select tags when creating conversations" msgstr "Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten" #~ msgid "Participation" #~ msgstr "Deelneming" -#: src/routes/auth/Register.tsx:97 -#: src/routes/auth/Register.tsx:100 -#: src/routes/auth/Login.tsx:258 -#: src/routes/auth/Login.tsx:261 +#: src/routes/auth/Register.tsx:101 +#: src/routes/auth/Register.tsx:105 +#: src/routes/auth/Login.tsx:260 +#: src/routes/auth/Login.tsx:264 msgid "Password" msgstr "Wachtwoord" -#: src/routes/project/report/ProjectReportRoute.tsx:288 +#: src/routes/project/report/ProjectReportRoute.tsx:295 msgid "Password protect portal (request feature)" msgstr "Portal met wachtwoord beveiligen (aanvraag functie)" -#: src/routes/auth/Register.tsx:37 +#: src/routes/auth/Register.tsx:38 #: src/routes/auth/PasswordReset.tsx:30 msgid "Passwords do not match" msgstr "Wachtwoorden komen niet overeen" @@ -2819,7 +3096,7 @@ msgstr "Wachtwoorden komen niet overeen" #~ msgid "Pause" #~ msgstr "Pauze" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Pause reading" msgstr "Pauzeer het voorlezen" @@ -2827,19 +3104,19 @@ msgstr "Pauzeer het voorlezen" msgid "Pending" msgstr "In afwachting" -#: src/components/chat/ChatModeSelector.tsx:245 +#: src/components/chat/ChatModeSelector.tsx:253 msgid "Pick the approach that fits your question" msgstr "Kies de aanpak die past bij je vraag" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:337 +#: src/components/participant/MicrophoneTest.tsx:344 msgid "participant.alert.microphone.access" msgstr "Schakel microfoontoegang in om de test te starten." #~ msgid "Please allow microphone access to start the test." #~ msgstr "Schakel microfoontoegang in om de test te starten." -#: src/routes/participant/ParticipantReport.tsx:60 +#: src/routes/participant/ParticipantReport.tsx:65 msgid "Please check back later or contact the project owner for more information." msgstr "Controleer later of contacteer de eigenaar van het project voor meer informatie." @@ -2850,29 +3127,28 @@ msgstr "Controleer uw invoer voor fouten." #~ msgid "Please do not close your browser" #~ msgstr "Sluit uw browser alstublieft niet" -#: src/components/project/ProjectQRCode.tsx:133 +#: src/components/project/ProjectQRCode.tsx:218 msgid "Please enable participation to enable sharing" msgstr "Schakel deelneming in om delen mogelijk te maken" #~ msgid "Please enter a message" #~ msgstr "Voer een bericht in" -#: src/routes/participant/ParticipantPostConversation.tsx:80 -#: src/routes/participant/ParticipantPostConversation.tsx:98 +#: src/routes/participant/ParticipantPostConversation.tsx:85 msgid "Please enter a valid email." msgstr "Voer een geldig e-mailadres in." #~ msgid "Please keep this screen lit up (black screen = not recording)" #~ msgstr "Houd dit scherm aan (zwart scherm = geen opname)" -#: src/routes/auth/Login.tsx:197 +#: src/routes/auth/Login.tsx:198 msgid "Please login to continue." msgstr "Log in om door te gaan." #~ msgid "Please provide a concise summary of the following provided in the context." #~ msgstr "Geef een korte samenvatting van het volgende dat in de context is verstrekt." -#: src/components/participant/ParticipantBody.tsx:185 +#: src/components/participant/ParticipantBody.tsx:186 msgid "" "Please record your response by clicking the \"Record\" button below. You may also choose to respond in text by clicking the text icon. \n" "**Please keep this screen lit up** \n" @@ -2885,18 +3161,18 @@ msgstr "" #~ msgid "Please record your response by clicking the \"Start Recording\" button below. You may also choose to respond in text by clicking the text icon." #~ msgstr "Neem uw antwoord op door op de knop \"Opname starten\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken." -#: src/components/report/CreateReportForm.tsx:141 +#: src/components/report/CreateReportForm.tsx:143 msgid "Please select a language for your report" msgstr "Kies een taal voor je rapport" -#: src/components/report/UpdateReportModalButton.tsx:99 +#: src/components/report/UpdateReportModalButton.tsx:108 msgid "Please select a language for your updated report" msgstr "Kies een taal voor je bijgewerkte rapport" #~ msgid "Please select at least one source" #~ msgstr "Kies minstens één bron" -#: src/routes/project/chat/ProjectChatRoute.tsx:677 +#: src/routes/project/chat/ProjectChatRoute.tsx:692 msgid "Please select conversations from the sidebar to proceed" msgstr "Selecteer gesprekken in de sidebar om verder te gaan" @@ -2912,21 +3188,21 @@ msgstr "Selecteer gesprekken in de sidebar om verder te gaan" #~ msgid "Please wait {timeStr} before requesting another reply." #~ msgstr "Wacht {timeStr} voordat u een ander antwoord aanvraagt." -#: src/components/report/CreateReportForm.tsx:52 +#: src/components/report/CreateReportForm.tsx:53 msgid "Please wait while we generate your report. You will automatically be redirected to the report page." msgstr "Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina." #. js-lingui-explicit-id #. placeholder {0}: formatRelative( new Date(latestRun.created_at ?? new Date()), new Date(), ) -#: src/routes/project/library/ProjectLibrary.tsx:249 +#: src/routes/project/library/ProjectLibrary.tsx:247 msgid "library.processing.request" msgstr "Bibliotheek wordt verwerkt" -#: src/components/conversation/RetranscribeConversation.tsx:128 +#: src/components/conversation/RetranscribeConversation.tsx:144 msgid "Please wait while we process your retranscription request. You will be redirected to the new conversation when ready." msgstr "Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar." -#: src/components/report/UpdateReportModalButton.tsx:74 +#: src/components/report/UpdateReportModalButton.tsx:83 msgid "Please wait while we update your report. You will automatically be redirected to the report page." msgstr "Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina." @@ -2934,20 +3210,20 @@ msgstr "Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgest msgid "Please wait while we verify your email address." msgstr "Wacht aub terwijl we uw e-mailadres verifiëren." -#: src/components/project/ProjectPortalEditor.tsx:959 +#: src/components/project/ProjectPortalEditor.tsx:1043 msgid "Portal Content" msgstr "Portal inhoud" -#: src/components/project/ProjectPortalEditor.tsx:416 -#: src/components/layout/ProjectOverviewLayout.tsx:43 +#: src/components/project/ProjectPortalEditor.tsx:454 +#: src/components/layout/ProjectOverviewLayout.tsx:47 msgid "Portal Editor" msgstr "Portaal-editor" -#: src/components/project/ProjectSidebar.tsx:172 +#: src/components/project/ProjectSidebar.tsx:180 msgid "Powered by" msgstr "Gemaakt met ❤️ door" -#: src/components/chat/ChatModeSelector.tsx:278 +#: src/components/chat/ChatModeSelector.tsx:286 msgid "Preparing your conversations... This may take a moment." msgstr "Je gesprekken worden klaargezet... Dit kan even duren." @@ -2955,11 +3231,15 @@ msgstr "Je gesprekken worden klaargezet... Dit kan even duren." msgid "Preparing your experience" msgstr "Uw ervaring voorbereiden" +#: src/components/settings/FontSizeSettingsCard.tsx:98 +msgid "Preview: The quick brown fox jumps over the lazy dog." +msgstr "Voorbeeld: De snelle bruine vos springt over de luiende hond." + #: src/routes/project/HostGuidePage.tsx:1426 msgid "Print / Save PDF" -msgstr "" +msgstr "Afdrukken / PDF opslaan" -#: src/routes/project/report/ProjectReportRoute.tsx:205 +#: src/routes/project/report/ProjectReportRoute.tsx:209 msgid "Print this report" msgstr "Dit rapport afdrukken" @@ -2967,12 +3247,12 @@ msgstr "Dit rapport afdrukken" msgid "Privacy Statements" msgstr "Privacy verklaring" -#: src/routes/project/report/ProjectReportRoute.tsx:335 +#: src/routes/project/report/ProjectReportRoute.tsx:352 msgid "Proceed" msgstr "Doorgaan" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:332 +#: src/components/conversation/SelectAllConfirmationModal.tsx:341 msgid "select.all.modal.proceed" msgstr "Doorgaan" @@ -2983,7 +3263,7 @@ msgstr "Doorgaan" #~ msgstr "Bezig met verwerken" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:378 +#: src/components/conversation/SelectAllConfirmationModal.tsx:388 msgid "select.all.modal.loading.description" msgstr "<0>{totalCount, plural, one {# gesprek} other {# gesprekken}} verwerken en toevoegen aan je chat" @@ -2996,12 +3276,12 @@ msgstr "<0>{totalCount, plural, one {# gesprek} other {# gesprekken}} verwer #~ msgid "Processing Transcript" #~ msgstr "Transcript wordt verwerkt" -#: src/components/report/UpdateReportModalButton.tsx:73 -#: src/components/report/CreateReportForm.tsx:51 +#: src/components/report/UpdateReportModalButton.tsx:82 +#: src/components/report/CreateReportForm.tsx:52 msgid "Processing your report..." msgstr "Rapport wordt verwerkt..." -#: src/components/conversation/RetranscribeConversation.tsx:127 +#: src/components/conversation/RetranscribeConversation.tsx:143 msgid "Processing your retranscription request..." msgstr "Hertranscriptieaanvraag wordt verwerkt..." @@ -3009,19 +3289,23 @@ msgstr "Hertranscriptieaanvraag wordt verwerkt..." msgid "Project Created" msgstr "Project aangemaakt" +#: src/components/conversation/RetranscribeConversation.tsx:172 +msgid "Project default: enabled. This will replace personally identifiable information with ." +msgstr "Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door ." + #: src/components/layout/ProjectLibraryLayout.tsx:6 msgid "Project Library | Dembrane" msgstr "Inzichtenbibliotheek | Dembrane" -#: src/components/project/ProjectDangerZone.tsx:143 +#: src/components/project/ProjectDangerZone.tsx:144 msgid "Project name" msgstr "Projectnaam" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:595 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:818 msgid "Project name and ID" -msgstr "" +msgstr "Projectnaam en ID" -#: src/components/project/ProjectBasicEdit.tsx:24 +#: src/components/project/ProjectBasicEdit.tsx:25 msgid "Project name must be at least 4 characters long" msgstr "Projectnaam moet minstens 4 tekens lang zijn" @@ -3032,29 +3316,29 @@ msgstr "Project niet gevonden" #~ msgid "Project Overview" #~ msgstr "Project Overzicht" -#: src/components/layout/ProjectOverviewLayout.tsx:25 +#: src/components/layout/ProjectOverviewLayout.tsx:26 msgid "Project Overview | Dembrane" msgstr "Project Overzicht | Dembrane" #~ msgid "Project Overview and Edit" #~ msgstr "Project Overzicht en Bewerken" -#: src/components/layout/ProjectOverviewLayout.tsx:44 +#: src/components/layout/ProjectOverviewLayout.tsx:48 msgid "Project Settings" msgstr "Project Instellingen" #~ msgid "project.sidebar.chat.end.description" #~ msgstr "Einde van de lijst • Alle {0} gesprekken geladen" -#: src/routes/project/ProjectsHome.tsx:144 +#: src/routes/project/ProjectsHome.tsx:146 msgid "Projects" msgstr "Projecten" -#: src/routes/project/ProjectsHome.tsx:38 +#: src/routes/project/ProjectsHome.tsx:39 msgid "Projects | Dembrane" msgstr "Projecten | Dembrane" -#: src/components/project/ProjectSidebar.tsx:91 +#: src/components/project/ProjectSidebar.tsx:93 msgid "Projects Home" msgstr "Projecten Home" @@ -3065,36 +3349,40 @@ msgstr "Geef een overzicht van de belangrijkste onderwerpen en herhalende thema' #~ msgid "Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information." #~ msgstr "Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie." -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Publish" msgstr "Publiceren" -#: src/routes/project/report/ProjectReportRoute.tsx:226 +#: src/routes/project/report/ProjectReportRoute.tsx:231 msgid "Published" msgstr "Gepubliceerd" -#: src/components/chat/ChatModeSelector.tsx:53 +#: src/components/chat/ChatModeSelector.tsx:54 msgid "Pull out the most impactful quotes from this session" msgstr "Haal de meest impactvolle quotes uit deze sessie" #~ msgid "Quotes" #~ msgstr "Quotes" -#: src/components/participant/verify/VerifyArtefact.tsx:323 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:285 +msgid "Re-use settings from an existing webhook" +msgstr "Gebruik instellingen van een bestaande webhook" + +#: src/components/participant/verify/VerifyArtefact.tsx:335 msgid "Read aloud" msgstr "Lees hardop voor" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:284 +#: src/components/participant/ParticipantOnboardingCards.tsx:282 msgid "participant.ready.to.begin" msgstr "Klaar om te beginnen" #~ msgid "Ready to Begin?" #~ msgstr "Klaar om te beginnen?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:793 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1019 msgid "Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen." -msgstr "" +msgstr "Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden." #~ msgid "Ready!" #~ msgstr "Klaar om te beginnen" @@ -3104,29 +3392,29 @@ msgid "Recommended apps" msgstr "Aanbevolen apps" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:565 +#: src/components/participant/ParticipantConversationAudio.tsx:572 msgid "participant.button.interruption.reconnect" msgstr "Opnieuw verbinden" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:661 +#: src/components/participant/ParticipantConversationAudio.tsx:673 msgid "participant.button.record" msgstr "Opname starten" #~ msgid "Record" #~ msgstr "Opname starten" -#: src/routes/participant/ParticipantPostConversation.tsx:142 +#: src/routes/participant/ParticipantPostConversation.tsx:139 msgid "Record another conversation" msgstr "Neem nog een gesprek op" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:532 +#: src/components/participant/ParticipantConversationAudio.tsx:538 msgid "participant.modal.interruption.title" msgstr "Opname onderbroken" #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:47 +#: src/components/participant/StopRecordingConfirmationModal.tsx:48 msgid "participant.modal.pause.title" msgstr "Opname gepauzeerd" @@ -3149,12 +3437,7 @@ msgstr "Terugkerende thema's" msgid "References" msgstr "Referenties" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:712 -msgid "participant.button.refine" -msgstr "Verfijnen" - -#: src/components/project/ProjectPortalEditor.tsx:1134 +#: src/components/project/ProjectPortalEditor.tsx:1350 msgid "Refresh" msgstr "Vernieuwen" @@ -3165,24 +3448,24 @@ msgstr "Auditlogboeken vernieuwen" #~ msgid "Regenerate Library" #~ msgstr "Bibliotheek opnieuw genereren" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:149 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:151 msgid "Regenerate Summary" msgstr "Samenvatting opnieuw genereren" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:303 -msgid "participant.concrete.regenerating.artefact" -msgstr "Nieuwe tekst aan het maken…" +#: src/components/participant/verify/VerifyArtefact.tsx:315 +msgid "participant.regenerating.outcome" +msgstr "Uitkomst wordt opnieuw gegenereerd" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:89 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:90 msgid "Regenerating the summary. Please wait..." msgstr "Samenvatting wordt opnieuw gemaakt. Even wachten..." -#: src/routes/auth/Register.tsx:22 +#: src/routes/auth/Register.tsx:23 msgid "Register | Dembrane" msgstr "Registreer | Dembrane" -#: src/routes/auth/Login.tsx:289 +#: src/routes/auth/Login.tsx:305 msgid "Register as a new user" msgstr "Registreer als nieuwe gebruiker" @@ -3190,7 +3473,7 @@ msgstr "Registreer als nieuwe gebruiker" #~ msgstr "Relevantie" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:113 +#: src/components/participant/ParticipantConversationText.tsx:114 msgid "participant.button.reload.page.text.mode" msgstr "Pagina herladen" @@ -3200,44 +3483,48 @@ msgid "participant.button.reload" msgstr "Pagina herladen" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:40 +#: src/components/participant/verify/VerifyArtefactError.tsx:39 msgid "participant.concrete.artefact.action.button.reload" msgstr "Opnieuw laden" #~ msgid "Reload Page" #~ msgstr "Pagina herladen" -#: src/routes/participant/ParticipantPostConversation.tsx:193 +#: src/components/settings/WhitelabelLogoCard.tsx:128 +msgid "Remove" +msgstr "Verwijderen" + +#: src/routes/participant/ParticipantPostConversation.tsx:198 msgid "Remove Email" msgstr "E-mail verwijderen" -#: src/components/dropzone/UploadConversationDropzone.tsx:643 +#: src/components/dropzone/UploadConversationDropzone.tsx:666 msgid "Remove file" msgstr "Bestand verwijderen" -#: src/components/conversation/ConversationAccordion.tsx:158 +#: src/components/conversation/ConversationAccordion.tsx:162 msgid "Remove from this chat" msgstr "Verwijder van dit gesprek" #. js-lingui-explicit-id -#: src/components/chat/ChatAccordion.tsx:122 +#: src/components/chat/ChatAccordion.tsx:139 msgid "project.sidebar.chat.rename" msgstr "Naam wijzigen" #~ msgid "Rename" #~ msgstr "Naam wijzigen" -#: src/components/project/ProjectPortalEditor.tsx:732 +#: src/components/project/ProjectPortalEditor.tsx:806 msgid "Reply Prompt" msgstr "Reactie prompt" -#: src/routes/project/report/ProjectReportRoute.tsx:58 -#: src/components/report/ReportRenderer.tsx:70 -#: src/components/report/ReportModalNavigationButton.tsx:65 +#: src/routes/project/report/ProjectReportRoute.tsx:60 +#: src/components/report/ReportRenderer.tsx:71 +#: src/components/report/ReportModalNavigationButton.tsx:67 msgid "Report" msgstr "Rapport" -#: src/components/layout/Header.tsx:76 +#: src/components/layout/Header.tsx:79 msgid "Report an issue" msgstr "Rapporteer een probleem" @@ -3246,11 +3533,11 @@ msgstr "Rapporteer een probleem" msgid "Report Created - {0}" msgstr "Rapport aangemaakt - {0}" -#: src/routes/project/report/ProjectReportRoute.tsx:150 +#: src/routes/project/report/ProjectReportRoute.tsx:152 msgid "Report generation is currently in beta and limited to projects with fewer than 10 hours of recording." msgstr "Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname." -#: src/components/project/ProjectPortalEditor.tsx:913 +#: src/components/project/ProjectPortalEditor.tsx:989 msgid "Report Notifications" msgstr "Rapportmeldingen" @@ -3268,25 +3555,29 @@ msgstr "Toegang aanvragen" msgid "Request Access" msgstr "Toegang aanvragen" -#: src/routes/auth/RequestPasswordReset.tsx:23 +#: src/routes/auth/RequestPasswordReset.tsx:24 msgid "Request Password Reset" msgstr "Wachtwoord reset aanvragen" -#: src/routes/auth/RequestPasswordReset.tsx:9 +#: src/routes/auth/RequestPasswordReset.tsx:10 msgid "Request Password Reset | Dembrane" msgstr "Wachtwoord reset aanvragen | Dembrane" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:350 +#: src/components/participant/MicrophoneTest.tsx:365 msgid "participant.alert.microphone.access.loading" msgstr "Microfoontoegang aanvragen om beschikbare apparaten te detecteren..." #~ msgid "Requesting microphone access to detect available devices..." #~ msgstr "Microfoontoegang aanvragen om beschikbare apparaten te detecteren..." +#: src/components/project/ProjectPortalEditor.tsx:1021 +msgid "Requires \"Ask for Email?\" to be enabled" +msgstr "Vraagt om e-mailadres? moet zijn ingeschakeld" + #: src/routes/project/HostGuidePage.tsx:1419 msgid "Reset" -msgstr "" +msgstr "Resetten" #~ msgid "Reset All Options" #~ msgstr "Alle opties resetten" @@ -3300,8 +3591,8 @@ msgstr "Wachtwoord resetten" msgid "Reset Password | Dembrane" msgstr "Wachtwoord resetten | Dembrane" -#: src/components/conversation/ConversationAccordion.tsx:1338 -#: src/components/conversation/ConversationAccordion.tsx:1343 +#: src/components/conversation/ConversationAccordion.tsx:1352 +#: src/components/conversation/ConversationAccordion.tsx:1357 msgid "Reset to default" msgstr "Resetten naar standaardinstellingen" @@ -3316,27 +3607,27 @@ msgstr "Hervatten" #~ msgid "Resume" #~ msgstr "Hervatten" -#: src/components/conversation/RetranscribeConversation.tsx:162 +#: src/components/conversation/RetranscribeConversation.tsx:185 msgid "Retranscribe" msgstr "Hertranscriptie" -#: src/components/conversation/RetranscribeConversation.tsx:38 +#: src/components/conversation/RetranscribeConversation.tsx:40 msgid "Retranscribe conversation" msgstr "Hertranscriptie gesprek" -#: src/components/conversation/RetranscribeConversation.tsx:118 +#: src/components/conversation/RetranscribeConversation.tsx:133 msgid "Retranscribe Conversation" msgstr "Hertranscriptie gesprek" -#: src/components/conversation/RetranscribeConversation.tsx:94 +#: src/components/conversation/RetranscribeConversation.tsx:109 msgid "Retranscription started. New conversation will be available soon." msgstr "Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar." -#: src/routes/project/chat/ProjectChatRoute.tsx:635 +#: src/routes/project/chat/ProjectChatRoute.tsx:650 msgid "Retry" msgstr "Opnieuw proberen" -#: src/components/dropzone/UploadConversationDropzone.tsx:820 +#: src/components/dropzone/UploadConversationDropzone.tsx:857 msgid "Retry Upload" msgstr "Opnieuw uploaden" @@ -3344,7 +3635,7 @@ msgstr "Opnieuw uploaden" msgid "Review activity for your workspace. Filter by collection or action, and export the current view for further investigation." msgstr "Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek." -#: src/components/dropzone/UploadConversationDropzone.tsx:581 +#: src/components/dropzone/UploadConversationDropzone.tsx:585 msgid "Review files before uploading" msgstr "Bestanden bekijken voordat u uploadt" @@ -3353,33 +3644,33 @@ msgid "Review processing status for every conversation collected in this project msgstr "Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:394 +#: src/components/participant/verify/VerifyArtefact.tsx:412 msgid "participant.concrete.action.button.revise" msgstr "Aanpassen" -#: src/components/settings/AuditLogsCard.tsx:612 +#: src/components/settings/AuditLogsCard.tsx:609 msgid "Revision #{revisionNumber}" msgstr "Revisie #{revisionNumber}" #: src/routes/project/HostGuidePage.tsx:1391 msgid "Right-click to highlight" -msgstr "" +msgstr "Rechtsklikken om te markeren" -#: src/components/settings/AuditLogsCard.tsx:646 +#: src/components/settings/AuditLogsCard.tsx:643 msgid "Rows per page" msgstr "Rijen per pagina" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:371 +#: src/components/participant/verify/VerifyArtefact.tsx:388 msgid "participant.concrete.action.button.save" msgstr "Opslaan" #~ msgid "Save" #~ msgstr "Opslaan" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:529 msgid "Save Changes" -msgstr "" +msgstr "Wijzigingen opslaan" #: src/components/form/SaveStatus.tsx:31 msgid "Save Error!" @@ -3399,11 +3690,11 @@ msgid "Scroll to bottom" msgstr "Scroll naar beneden" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:413 +#: src/components/conversation/SelectAllConfirmationModal.tsx:423 msgid "select.all.modal.loading.search" msgstr "Zoeken" -#: src/components/conversation/MoveConversationButton.tsx:151 +#: src/components/conversation/MoveConversationButton.tsx:158 msgid "Search" msgstr "Zoeken" @@ -3411,20 +3702,20 @@ msgstr "Zoeken" msgid "Search conversations" msgstr "Zoek gesprekken" -#: src/routes/project/ProjectsHome.tsx:176 +#: src/routes/project/ProjectsHome.tsx:179 msgid "Search projects" msgstr "Zoek projecten" -#: src/components/conversation/ConversationAccordion.tsx:275 +#: src/components/conversation/ConversationAccordion.tsx:280 msgid "Search Projects" msgstr "Zoek projecten" -#: src/components/conversation/MoveConversationButton.tsx:152 -#: src/components/conversation/ConversationAccordion.tsx:279 +#: src/components/conversation/MoveConversationButton.tsx:159 +#: src/components/conversation/ConversationAccordion.tsx:284 msgid "Search projects..." msgstr "Zoek projecten..." -#: src/components/conversation/ConversationAccordion.tsx:1233 +#: src/components/conversation/ConversationAccordion.tsx:1237 msgid "Search tags" msgstr "Zoek tags" @@ -3433,10 +3724,14 @@ msgid "Search templates..." msgstr "Zoek templates..." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:69 +#: src/components/conversation/SelectAllConfirmationModal.tsx:70 msgid "select.all.modal.search.text" msgstr "Zoektekst:" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:336 +msgid "Search webhooks..." +msgstr "Zoek webhooks..." + #: src/components/chat/SourcesSearched.tsx:13 msgid "Searched through the most relevant sources" msgstr "Doorzocht de meest relevante bronnen" @@ -3445,9 +3740,9 @@ msgstr "Doorzocht de meest relevante bronnen" msgid "Searching through the most relevant sources" msgstr "Zoeken door de meest relevante bronnen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:247 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:442 msgid "Secret" -msgstr "" +msgstr "Geheim" #: src/components/settings/TwoFactorSettingsCard.tsx:436 msgid "Secret copied" @@ -3456,79 +3751,83 @@ msgstr "Geheim gekopieerd" #~ msgid "See conversation status details" #~ msgstr "Gespreksstatusdetails bekijken" -#: src/components/layout/Header.tsx:106 +#: src/components/layout/Header.tsx:118 msgid "See you soon" msgstr "Tot snel" #~ msgid "Segments" #~ msgstr "Segmenten" -#: src/components/participant/MicrophoneTest.tsx:314 +#: src/components/participant/MicrophoneTest.tsx:315 msgid "Select a microphone" msgstr "Selecteer een microfoon" -#: src/components/conversation/ConversationAccordion.tsx:1381 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:334 +msgid "Select a webhook to clone" +msgstr "Selecteer een webhook om te klonen" + +#: src/components/conversation/ConversationAccordion.tsx:1396 msgid "Select all" msgstr "Alles selecteren" -#: src/components/conversation/ConversationAccordion.tsx:1379 +#: src/components/conversation/ConversationAccordion.tsx:1394 msgid "Select all ({remainingCount})" msgstr "Alles selecteren ({remainingCount})" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:211 +#: src/components/conversation/SelectAllConfirmationModal.tsx:212 msgid "select.all.modal.title.results" msgstr "Alle resultaten selecteren" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:284 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:479 msgid "Select at least one event" -msgstr "" +msgstr "Selecteer ten minste één gebeurtenis" -#: src/components/dropzone/UploadConversationDropzone.tsx:519 +#: src/components/dropzone/UploadConversationDropzone.tsx:521 msgid "Select Audio Files to Upload" msgstr "Selecteer audiobestanden om te uploaden" -#: src/components/chat/ChatModeSelector.tsx:254 +#: src/components/chat/ChatModeSelector.tsx:262 msgid "Select conversations and find exact quotes" msgstr "Selecteer gesprekken en vind exacte quotes" -#: src/components/chat/ChatModeBanner.tsx:63 +#: src/components/chat/ChatModeBanner.tsx:53 msgid "Select conversations from sidebar" msgstr "Selecteer gesprekken in de sidebar" -#: src/components/conversation/ConversationAccordion.tsx:299 +#: src/components/conversation/ConversationAccordion.tsx:304 msgid "Select Project" msgstr "Selecteer Project" #~ msgid "Select Session" #~ msgstr "Selecteer Sessie" -#: src/components/conversation/ConversationEdit.tsx:175 +#: src/components/conversation/ConversationEdit.tsx:355 msgid "Select tags" msgstr "Selecteer tags" -#: src/components/project/ProjectPortalEditor.tsx:526 +#: src/components/project/ProjectPortalEditor.tsx:593 msgid "Select the instructions that will be shown to participants when they start a conversation" msgstr "Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten" -#: src/components/project/ProjectPortalEditor.tsx:622 +#: src/components/project/ProjectPortalEditor.tsx:691 msgid "Select the type of feedback or engagement you want to encourage." msgstr "Selecteer het type feedback of betrokkenheid dat u wilt stimuleren." -#: src/components/project/ProjectPortalEditor.tsx:514 +#: src/components/project/ProjectPortalEditor.tsx:581 msgid "Select tutorial" msgstr "Selecteer tutorial" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:826 -msgid "dashboard.dembrane.concrete.topic.select" -msgstr "Kies een concreet onderwerp" +#: src/components/project/ProjectPortalEditor.tsx:902 +msgid "dashboard.dembrane.verify.topic.select" +msgstr "Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie." #~ msgid "Select your group" #~ msgstr "Selecteer je groep" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:306 +#: src/components/participant/MicrophoneTest.tsx:307 msgid "participant.select.microphone" msgstr "Selecteer een microfoon" @@ -3536,65 +3835,65 @@ msgstr "Selecteer een microfoon" #~ msgstr "Selecteer je microfoon:" #. placeholder {0}: selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:576 +#: src/components/dropzone/UploadConversationDropzone.tsx:580 msgid "Selected Files ({0}/{MAX_FILES})" msgstr "Geselecteerde bestanden ({0}/{MAX_FILES})" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:302 +#: src/components/participant/MicrophoneTest.tsx:303 msgid "participant.selected.microphone" msgstr "Geselecteerde microfoon" -#: src/components/conversation/SelectAllConfirmationModal.tsx:124 +#: src/components/conversation/SelectAllConfirmationModal.tsx:125 msgid "Selection too large" msgstr "Selectie te groot" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:472 +#: src/components/conversation/SelectAllConfirmationModal.tsx:493 msgid "select.all.modal.context.limit.reached" msgstr "Selectie te groot. Sommige gesprekken zijn niet toegevoegd." -#: src/routes/project/chat/ProjectChatRoute.tsx:771 +#: src/routes/project/chat/ProjectChatRoute.tsx:788 msgid "Send" msgstr "Verzenden" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:617 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:843 msgid "Send Slack/Teams notifications when new conversations are completed" -msgstr "" +msgstr "Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid" #~ msgid "Sentiment" #~ msgstr "Gevoel" -#: src/components/participant/ParticipantInitiateForm.tsx:97 +#: src/components/participant/ParticipantInitiateForm.tsx:106 msgid "Session Name" msgstr "Sessienaam" -#: src/routes/auth/Login.tsx:108 -#: src/routes/auth/Login.tsx:112 +#: src/routes/auth/Login.tsx:109 +#: src/routes/auth/Login.tsx:113 msgid "Setting up your first project" msgstr "Installeer je eerste project" -#: src/routes/settings/UserSettingsRoute.tsx:39 -#: src/components/layout/ParticipantHeader.tsx:93 -#: src/components/layout/ParticipantHeader.tsx:94 -#: src/components/layout/Header.tsx:171 +#: src/routes/settings/UserSettingsRoute.tsx:41 +#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:113 +#: src/components/layout/Header.tsx:195 msgid "Settings" msgstr "Instellingen" #. js-lingui-explicit-id -#: src/components/participant/ParticipantSettingsModal.tsx:22 +#: src/components/participant/ParticipantSettingsModal.tsx:23 msgid "participant.settings.modal.title" msgstr "Instellingen" -#: src/routes/settings/UserSettingsRoute.tsx:20 +#: src/routes/settings/UserSettingsRoute.tsx:22 msgid "Settings | Dembrane" msgstr "Instellingen | Dembrane" #: src/components/project/ProjectQRCode.tsx:108 -msgid "Share" -msgstr "Delen" +#~ msgid "Share" +#~ msgstr "Delen" -#: src/routes/project/report/ProjectReportRoute.tsx:175 +#: src/routes/project/report/ProjectReportRoute.tsx:177 msgid "Share this report" msgstr "Dit rapport delen" @@ -3602,25 +3901,29 @@ msgstr "Dit rapport delen" msgid "Share your details here" msgstr "Deel je gegevens hier" -#: src/components/report/ReportRenderer.tsx:22 +#: src/components/report/ReportRenderer.tsx:23 msgid "Share your voice" msgstr "Deel je stem" -#: src/components/report/ReportRenderer.tsx:26 +#: src/components/report/ReportRenderer.tsx:27 msgid "Share your voice by scanning the QR code below." msgstr "Deel je stem door het QR-code hieronder te scannen." -#: src/components/conversation/ConversationAccordion.tsx:643 +#: src/components/conversation/ConversationAccordion.tsx:633 msgid "Shortest First" msgstr "Kortste eerst" +#: src/components/conversation/ConversationEdit.tsx:282 +msgid "Show" +msgstr "Toon" + #~ msgid "Show {0}" #~ msgstr "Toon {0}" #~ msgid "Show all" #~ msgstr "Toon alles" -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:110 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:115 msgid "Show audio player" msgstr "Toon audiospeler" @@ -3635,11 +3938,11 @@ msgstr "Gegevens tonen" msgid "Show IP addresses" msgstr "IP-adressen tonen" -#: src/components/announcement/AnnouncementItem.tsx:125 +#: src/components/announcement/AnnouncementItem.tsx:129 msgid "Show less" msgstr "Minder tonen" -#: src/components/announcement/AnnouncementItem.tsx:130 +#: src/components/announcement/AnnouncementItem.tsx:134 msgid "Show more" msgstr "Meer tonen" @@ -3652,14 +3955,14 @@ msgstr "Toon referenties" msgid "Show revision data" msgstr "Revisiegegevens tonen" -#: src/routes/project/report/ProjectReportRoute.tsx:283 +#: src/routes/project/report/ProjectReportRoute.tsx:290 msgid "Show timeline in report (request feature)" msgstr "Toon tijdlijn in rapport (aanvraag functie)" #~ msgid "Show timestamps (experimental)" #~ msgstr "Toon tijdstempels (experimenteel)" -#: src/components/settings/AuditLogsCard.tsx:658 +#: src/components/settings/AuditLogsCard.tsx:655 msgid "Showing {displayFrom}–{displayTo} of {totalItems} entries" msgstr "Toont {displayFrom}–{displayTo} van {totalItems} items" @@ -3674,35 +3977,35 @@ msgstr "Overslaan" #~ msgid "Skip" #~ msgstr "Overslaan" -#: src/components/project/ProjectPortalEditor.tsx:533 +#: src/components/project/ProjectPortalEditor.tsx:600 msgid "Skip data privacy slide (Host manages legal base)" msgstr "Gegevensprivacy slides (Host beheert rechtsgrondslag)" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:573 +#: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" msgstr "Overgeslagen omdat de selectie te groot was." #~ msgid "Some conversations are still being processed. Auto-select will work optimally once audio processing is complete." #~ msgstr "Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid." -#: src/components/dropzone/UploadConversationDropzone.tsx:430 +#: src/components/dropzone/UploadConversationDropzone.tsx:431 msgid "Some files were already selected and won't be added twice." msgstr "Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:237 +#: src/components/conversation/SelectAllConfirmationModal.tsx:239 msgid "select.all.modal.skip.disclaimer" msgstr "Sommige kunnen worden overgeslagen (geen transcript of selectie te groot)." -#: src/routes/auth/Login.tsx:158 -#: src/components/participant/ParticipantInitiateForm.tsx:84 -#: src/components/conversation/ConversationEdit.tsx:144 +#: src/routes/auth/Login.tsx:159 +#: src/components/participant/ParticipantInitiateForm.tsx:93 +#: src/components/conversation/ConversationEdit.tsx:241 msgid "Something went wrong" msgstr "Er ging iets mis" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:96 +#: src/components/participant/ParticipantConversationText.tsx:97 msgid "participant.conversation.error.text.mode" msgstr "Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan" @@ -3722,16 +4025,16 @@ msgstr "Er is iets misgegaan bij het genereren van het geheim." #~ msgid "Something went wrong while uploading the file: {0}" #~ msgstr "Er ging iets mis tijdens het uploaden van het bestand: {0}" -#: src/components/participant/ParticipantBody.tsx:151 +#: src/components/participant/ParticipantBody.tsx:152 msgid "Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists" msgstr "Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan" #. js-lingui-explicit-id #: src/components/participant/EchoErrorAlert.tsx:21 -msgid "participant.go.deeper.generic.error.message" -msgstr "Dit gesprek kan nu niet dieper. Probeer het straks nog een keer." +msgid "participant.explore.generic.error.message" +msgstr "Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt." -#: src/components/participant/verify/VerifyArtefact.tsx:149 +#: src/components/participant/verify/VerifyArtefact.tsx:150 msgid "Something went wrong. Please try again." msgstr "Er is iets misgegaan. Probeer het alstublieft opnieuw." @@ -3740,8 +4043,8 @@ msgstr "Er is iets misgegaan. Probeer het alstublieft opnieuw." msgid "participant.go.deeper.content.policy.violation.error.message" msgstr "We kunnen hier niet dieper op ingaan door onze contentregels." -#: src/components/conversation/ConversationAccordion.tsx:1156 -#: src/components/conversation/ConversationAccordion.tsx:1163 +#: src/components/conversation/ConversationAccordion.tsx:1157 +#: src/components/conversation/ConversationAccordion.tsx:1164 msgid "Sort" msgstr "Sorteer" @@ -3753,28 +4056,32 @@ msgstr "Bron {0}" #~ msgid "Sources:" #~ msgstr "Bronnen:" -#: src/components/project/ProjectPortalEditor.tsx:467 +#: src/components/project/ProjectPortalEditor.tsx:506 msgid "Spanish" msgstr "Spaans" #~ msgid "Speaker" #~ msgstr "Spreker" -#: src/components/project/ProjectPortalEditor.tsx:125 +#: src/components/project/ProjectPortalEditor.tsx:130 msgid "Specific Context" msgstr "Specifieke context" -#: src/components/chat/ChatModeSelector.tsx:253 +#: src/components/chat/ChatModeSelector.tsx:261 #: src/components/chat/ChatModeBanner.tsx:37 msgid "Specific Details" msgstr "Specifieke details" -#: src/components/chat/ChatAccordion.tsx:58 +#: src/components/chat/ChatAccordion.tsx:57 msgid "Specific Details - Selected conversations" msgstr "Specifieke details - Geselecteerde gesprekken" +#: src/components/project/webhooks/WebhookSettingsCard.tsx:305 +msgid "Start fresh" +msgstr "Beginnen vanaf nul" + #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:125 +#: src/components/participant/ParticipantConversationText.tsx:126 msgid "participant.button.start.new.conversation.text.mode" msgstr "Nieuw gesprek starten" @@ -3797,12 +4104,12 @@ msgstr "Opnieuw beginnen" msgid "Status" msgstr "Status" -#: src/routes/project/chat/ProjectChatRoute.tsx:594 +#: src/routes/project/chat/ProjectChatRoute.tsx:607 msgid "Stop" msgstr "Stop" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:731 +#: src/components/participant/ParticipantConversationAudio.tsx:750 msgid "participant.button.stop" msgstr "Stop" @@ -3810,19 +4117,19 @@ msgstr "Stop" msgid "Strategic Planning" msgstr "Strategische Planning" -#: src/routes/auth/RequestPasswordReset.tsx:41 +#: src/routes/auth/RequestPasswordReset.tsx:44 msgid "Submit" msgstr "Stuur in" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:220 +#: src/components/participant/ParticipantConversationText.tsx:229 msgid "participant.button.submit.text.mode" msgstr "Stuur in" #~ msgid "Submitted via text input" #~ msgstr "Ingereed via tekstinput" -#: src/components/dropzone/UploadConversationDropzone.tsx:791 +#: src/components/dropzone/UploadConversationDropzone.tsx:822 msgid "Success" msgstr "Succes" @@ -3835,38 +4142,38 @@ msgstr "Aanbevelingen:" msgid "Summarize" msgstr "Samenvatten" -#: src/components/chat/ChatModeSelector.tsx:47 +#: src/components/chat/ChatModeSelector.tsx:48 msgid "Summarize key insights from my interviews" msgstr "Vat de belangrijkste inzichten uit mijn interviews samen" -#: src/components/chat/ChatModeSelector.tsx:52 +#: src/components/chat/ChatModeSelector.tsx:53 msgid "Summarize this interview into a shareable article" msgstr "Vat dit interview samen in een artikel dat je kunt delen" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:135 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:136 msgid "Summary" msgstr "Samenvatting" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:589 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:812 msgid "Summary (when available)" -msgstr "" +msgstr "Samenvatting (wanneer beschikbaar)" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:101 msgid "Summary generated successfully." msgstr "Samenvatting gemaakt." #~ msgid "Summary not available yet" #~ msgstr "Samenvatting nog niet beschikbaar" -#: src/routes/project/conversation/ProjectConversationOverview.tsx:99 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:100 msgid "Summary regenerated successfully." msgstr "Samenvatting opnieuw gemaakt." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:184 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:187 msgid "Summary will be available once the conversation is transcribed" msgstr "Samenvatting komt beschikbaar als het gesprek is uitgeschreven." -#: src/components/dropzone/UploadConversationDropzone.tsx:562 +#: src/components/dropzone/UploadConversationDropzone.tsx:566 msgid "Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" msgstr "Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS" @@ -3879,11 +4186,11 @@ msgstr "Overschakelen naar tekstinvoer" msgid "System" msgstr "Systeem" -#: src/components/project/ProjectTagsInput.tsx:238 -#: src/components/participant/ParticipantInitiateForm.tsx:107 -#: src/components/conversation/ConversationEdit.tsx:178 -#: src/components/conversation/ConversationAccordion.tsx:1223 -#: src/components/conversation/ConversationAccordion.tsx:1226 +#: src/components/project/ProjectTagsInput.tsx:239 +#: src/components/participant/ParticipantInitiateForm.tsx:117 +#: src/components/conversation/ConversationEdit.tsx:358 +#: src/components/conversation/ConversationAccordion.tsx:1227 +#: src/components/conversation/ConversationAccordion.tsx:1230 msgid "Tags" msgstr "Trefwoorden" @@ -3900,7 +4207,7 @@ msgstr "Neem even de tijd om een resultaat te creëren dat je bijdrage concreet msgid "participant.refine.make.concrete.description" msgstr "Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt." -#: src/routes/project/chat/ProjectChatRoute.tsx:429 +#: src/routes/project/chat/ProjectChatRoute.tsx:431 msgid "Template applied" msgstr "Template toegepast" @@ -3908,33 +4215,33 @@ msgstr "Template toegepast" msgid "Templates" msgstr "Sjablonen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:436 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:632 msgid "Test Webhook" -msgstr "" +msgstr "Webhook testen" -#: src/components/conversation/ConversationAccordion.tsx:415 +#: src/components/conversation/ConversationAccordion.tsx:420 msgid "Text" msgstr "Tekst" -#: src/routes/participant/ParticipantPostConversation.tsx:129 +#: src/routes/participant/ParticipantPostConversation.tsx:121 msgid "Thank you for participating!" msgstr "Dank je wel voor je deelname!" #~ msgid "Thank You Page" #~ msgstr "Bedankt Pagina" -#: src/components/project/ProjectPortalEditor.tsx:1022 +#: src/components/project/ProjectPortalEditor.tsx:1109 msgid "Thank You Page Content" msgstr "Bedankt pagina inhoud" -#~ msgid "Thank you! In the meantime, click individual documents to add context to each file that I will take into account for further analysis." -#~ msgstr "Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse." - -#: src/routes/participant/ParticipantPostConversation.tsx:245 +#: src/routes/participant/ParticipantPostConversation.tsx:250 msgid "Thank you!" msgstr "Bedankt!" -#: src/routes/auth/Login.tsx:141 +#~ msgid "Thank you! In the meantime, click individual documents to add context to each file that I will take into account for further analysis." +#~ msgstr "Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse." + +#: src/routes/auth/Login.tsx:142 msgid "That code didn't work. Try again with a fresh code from your authenticator app." msgstr "Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app." @@ -3946,7 +4253,7 @@ msgid "The code didn't work, please try again." msgstr "Code werkt niet, probeer het nog een keer." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:101 +#: src/components/participant/ParticipantConversationText.tsx:102 msgid "participant.conversation.error.loading.text.mode" msgstr "Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan" @@ -3958,9 +4265,9 @@ msgstr "Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of #~ msgid "The conversation could not be loaded. Please try again or contact support." #~ msgstr "Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:219 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:414 msgid "The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server)." -msgstr "" +msgstr "Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server)." #: src/components/chat/Sources.tsx:22 msgid "The following conversations were automatically added to the context" @@ -3972,11 +4279,11 @@ msgstr "De volgende gesprekken werden automatisch toegevoegd aan de context" #~ msgid "the project library." #~ msgstr "de projectbibliotheek." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:105 msgid "The summary is being generated. Please wait for it to be available." msgstr "Samenvatting wordt gemaakt. Even wachten tot die klaar is." -#: src/routes/project/conversation/ProjectConversationOverview.tsx:103 +#: src/routes/project/conversation/ProjectConversationOverview.tsx:104 msgid "The summary is being regenerated. Please wait for it to be available." msgstr "Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is." @@ -3989,23 +4296,27 @@ msgstr "Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is." #~ msgid "The transcript for this conversation is being processed. Please check back later." #~ msgstr "Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw." +#: src/components/project/webhooks/WebhookSettingsCard.tsx:345 +msgid "The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured." +msgstr "De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd." + #: src/components/settings/FontSettingsCard.tsx:70 msgid "Theme" msgstr "Thema" -#: src/components/project/ProjectDangerZone.tsx:134 +#: src/components/project/ProjectDangerZone.tsx:136 msgid "There was an error cloning your project. Please try again or contact support." msgstr "Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning." -#: src/components/report/CreateReportForm.tsx:65 +#: src/components/report/CreateReportForm.tsx:66 msgid "There was an error creating your report. Please try again or contact support." msgstr "Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning." -#: src/routes/project/report/ProjectReportRoute.tsx:157 +#: src/routes/project/report/ProjectReportRoute.tsx:159 msgid "There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with." msgstr "Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten." -#: src/components/report/UpdateReportModalButton.tsx:83 +#: src/components/report/UpdateReportModalButton.tsx:92 msgid "There was an error updating your report. Please try again or contact support." msgstr "Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning." @@ -4020,7 +4331,7 @@ msgstr "Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het #~ msgstr "Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn." #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:612 +#: src/components/conversation/SelectAllConfirmationModal.tsx:640 msgid "select.all.modal.other.reason.description" msgstr "Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties." @@ -4028,7 +4339,7 @@ msgstr "Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties." msgid "These default view templates will be generated when you create your first library." msgstr "Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt." -#: src/components/participant/ParticipantEchoMessages.tsx:42 +#: src/components/participant/ParticipantEchoMessages.tsx:44 msgid "Thinking..." msgstr "Denken..." @@ -4048,7 +4359,7 @@ msgstr "Dit gesprek is een kopie van" #~ msgid "This conversation is still being processed. It will be available for analysis and chat shortly. " #~ msgstr "Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. " -#: src/routes/participant/ParticipantPostConversation.tsx:94 +#: src/routes/participant/ParticipantPostConversation.tsx:81 msgid "This email is already in the list." msgstr "Deze e-mail is al in de lijst." @@ -4056,20 +4367,20 @@ msgstr "Deze e-mail is al in de lijst." #~ msgstr "Deze e-mail is al geabonneerd op meldingen." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:498 +#: src/components/participant/ParticipantConversationAudio.tsx:499 msgid "participant.modal.refine.info.available.in" msgstr "Deze functie is beschikbaar over {remainingTime} seconden." -#: src/components/project/ProjectPortalEditor.tsx:1138 +#: src/components/project/ProjectPortalEditor.tsx:1354 msgid "This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes." msgstr "Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken." #~ msgid "This is a very simple tool where you can record conversations or stories to make your voice heard." #~ msgstr "Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:852 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1078 msgid "This is an example of the JSON data sent to your webhook URL when a conversation is summarized." -msgstr "" +msgstr "Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat." #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:209 @@ -4091,15 +4402,15 @@ msgstr "Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegel #~ msgid "This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead." #~ msgstr "Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header." -#: src/components/project/ProjectPortalEditor.tsx:462 +#: src/components/project/ProjectPortalEditor.tsx:501 msgid "This language will be used for the Participant's Portal." msgstr "Deze taal wordt gebruikt voor de Portal van de deelnemer." -#: src/components/project/ProjectPortalEditor.tsx:1032 +#: src/components/project/ProjectPortalEditor.tsx:1119 msgid "This page is shown after the participant has completed the conversation." msgstr "Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer." -#: src/components/project/ProjectPortalEditor.tsx:1002 +#: src/components/project/ProjectPortalEditor.tsx:1087 msgid "This page is shown to participants when they start a conversation after they successfully complete the tutorial." msgstr "Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial." @@ -4109,23 +4420,23 @@ msgstr "Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten #~ msgid "This project library was generated on {0}." #~ msgstr "Deze projectbibliotheek is op {0} gemaakt." -#: src/components/project/ProjectPortalEditor.tsx:743 +#: src/components/project/ProjectPortalEditor.tsx:817 msgid "This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage." msgstr "Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert" -#: src/routes/participant/ParticipantReport.tsx:56 +#: src/routes/participant/ParticipantReport.tsx:61 msgid "This report is not yet available. " msgstr "Dit rapport is nog niet beschikbaar. " #. placeholder {0}: views?.total ?? 0 -#: src/routes/project/report/ProjectReportRoute.tsx:90 +#: src/routes/project/report/ProjectReportRoute.tsx:92 msgid "This report was opened by {0} people" msgstr "Dit rapport werd geopend door {0} mensen" #~ msgid "This summary is AI-generated and brief, for thorough analysis, use the Chat or Library." #~ msgstr "Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek." -#: src/components/project/ProjectPortalEditor.tsx:980 +#: src/components/project/ProjectPortalEditor.tsx:1064 msgid "This title is shown to participants when they start a conversation" msgstr "Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten" @@ -4133,11 +4444,11 @@ msgstr "Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten" msgid "This will clear your current input. Are you sure?" msgstr "Dit zal uw huidige invoer wissen. Weet u het zeker?" -#: src/components/project/ProjectDangerZone.tsx:114 +#: src/components/project/ProjectDangerZone.tsx:117 msgid "This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning." msgstr "Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen." -#: src/components/conversation/RetranscribeConversation.tsx:138 +#: src/components/conversation/RetranscribeConversation.tsx:154 msgid "This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged." msgstr "Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd." @@ -4147,7 +4458,7 @@ msgid "add.tag.filter.modal.info" msgstr "Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven." #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefact.tsx:308 +#: src/components/participant/verify/VerifyArtefact.tsx:320 msgid "participant.concrete.regenerating.artefact.description" msgstr "We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden." @@ -4156,7 +4467,7 @@ msgstr "We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar sec msgid "participant.concrete.loading.artefact.description" msgstr "We zijn je tekst aan het ophalen. Even geduld." -#: src/components/conversation/RetranscribeConversation.tsx:153 +#: src/components/conversation/RetranscribeConversation.tsx:173 msgid "This will replace personally identifiable information with ." msgstr "Dit zal persoonlijk herkenbare informatie vervangen door ." @@ -4167,38 +4478,43 @@ msgstr "Dit zal persoonlijk herkenbare informatie vervangen door ." msgid "Timestamp" msgstr "Tijdstempel" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:592 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:815 msgid "Timestamps and duration" -msgstr "" +msgstr "Tijdstempels en duur" -#: src/components/participant/ParticipantBody.tsx:143 +#: src/components/participant/ParticipantBody.tsx:144 msgid "Tip" msgstr "Tip" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:771 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:997 msgid "Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly." -msgstr "" +msgstr "Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt." -#~ msgid "Title" -#~ msgstr "Titel" +#: src/components/conversation/ConversationEdit.tsx:319 +msgid "Title" +msgstr "Titel" -#: src/components/conversation/ConversationEdit.tsx:200 +#: src/components/conversation/ConversationEdit.tsx:381 msgid "To assign a new tag, please create it first in the project overview." msgstr "Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht." -#: src/components/report/CreateReportForm.tsx:91 +#: src/components/report/CreateReportForm.tsx:92 msgid "To generate a report, please start by adding conversations in your project" msgstr "Om een rapport te genereren, voeg eerst gesprekken toe aan uw project" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:537 +#: src/components/conversation/SelectAllConfirmationModal.tsx:565 msgid "select.all.modal.context.limit" msgstr "Te groot" -#: src/components/conversation/SelectAllConfirmationModal.tsx:128 +#: src/components/conversation/SelectAllConfirmationModal.tsx:129 msgid "Too long" msgstr "Te lang" +#: src/components/conversation/ConversationEdit.tsx:340 +msgid "Topic-based title describing what was discussed" +msgstr "Titel op basis van onderwerp die beschrijft wat er werd besproken" + #: src/components/view/CreateViewForm.tsx:123 msgid "Topics" msgstr "Onderwerpen" @@ -4210,12 +4526,12 @@ msgstr "Onderwerpen" msgid "Transcribing..." msgstr "Transcriptie wordt uitgevoerd..." -#: src/routes/project/conversation/ProjectConversationTranscript.tsx:83 +#: src/routes/project/conversation/ProjectConversationTranscript.tsx:84 #: src/components/layout/ProjectConversationLayout.tsx:47 msgid "Transcript" msgstr "Transcriptie" -#: src/components/conversation/CopyConversationTranscript.tsx:27 +#: src/components/conversation/CopyConversationTranscript.tsx:28 msgid "Transcript copied to clipboard" msgstr "Transcript gekopieerd naar klembord" @@ -4308,15 +4624,15 @@ msgstr "" "\n" "Opmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:624 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:850 msgid "Trigger automated workflows in tools like Zapier, Make, or n8n" -msgstr "" +msgstr "Trigger automatische workflows in tools like Zapier, Make, or n8n" #: src/components/announcement/AnnouncementErrorState.tsx:34 msgid "Try Again" msgstr "Opnieuw proberen" -#: src/components/chat/ChatModeSelector.tsx:163 +#: src/components/chat/ChatModeSelector.tsx:162 msgid "Try asking" msgstr "Vraag bijvoorbeeld" @@ -4340,7 +4656,7 @@ msgstr "Tweestapsverificatie aangezet" msgid "Type" msgstr "Type" -#: src/routes/project/chat/ProjectChatRoute.tsx:726 +#: src/routes/project/chat/ProjectChatRoute.tsx:742 msgid "Type a message..." msgstr "Typ een bericht..." @@ -4350,28 +4666,32 @@ msgstr "Typ een bericht..." #~ msgid "Type context here..." #~ msgstr "Typ hier de context..." -#: src/components/participant/ParticipantConversationText.tsx:207 +#: src/components/participant/ParticipantConversationText.tsx:214 msgid "Type your response here" msgstr "Typ hier uw reactie" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyArtefactError.tsx:19 -msgid "participant.concrete.artefact.error.title" -msgstr "Er ging iets mis met dit artefact" - #: src/components/settings/AuditLogsCard.tsx:511 msgid "Unable to load audit logs." msgstr "Kan auditlogboeken niet laden." +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyArtefactError.tsx:19 +msgid "participant.outcome.error.title" +msgstr "Kan uitkomst niet laden" + #: src/components/participant/verify/VerifyArtefact.tsx:89 -msgid "Unable to load the generated artefact. Please try again." -msgstr "Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw." +#~ msgid "Unable to load the generated artefact. Please try again." +#~ msgstr "Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw." + +#: src/components/participant/verify/VerifyArtefact.tsx:90 +msgid "Unable to load the generated outcome. Please try again." +msgstr "Kan het gegenereerde resultaat niet laden. Probeer het opnieuw." #: src/components/conversation/ConversationChunkAudioTranscript.tsx:69 msgid "Unable to process this chunk" msgstr "Kan dit fragment niet verwerken" -#: src/routes/project/chat/ProjectChatRoute.tsx:431 +#: src/routes/project/chat/ProjectChatRoute.tsx:433 msgid "Undo" msgstr "Ongedaan maken" @@ -4379,15 +4699,15 @@ msgstr "Ongedaan maken" msgid "Unknown" msgstr "Onbekend" -#: src/components/conversation/SelectAllConfirmationModal.tsx:132 +#: src/components/conversation/SelectAllConfirmationModal.tsx:133 msgid "Unknown reason" msgstr "Onbekende reden" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:39 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:41 msgid "unread announcement" msgstr "ongelezen melding" -#: src/components/announcement/AnnouncementDrawerHeader.tsx:40 +#: src/components/announcement/AnnouncementDrawerHeader.tsx:42 msgid "unread announcements" msgstr "ongelezen meldingen" @@ -4403,20 +4723,20 @@ msgstr "Afmelden" msgid "Untitled Conversation" msgstr "Gesprek zonder titel" -#: src/components/report/UpdateReportModalButton.tsx:66 +#: src/components/report/UpdateReportModalButton.tsx:67 msgid "Update" msgstr "Bijwerken" -#: src/components/report/UpdateReportModalButton.tsx:70 -#: src/components/report/UpdateReportModalButton.tsx:122 +#: src/components/report/UpdateReportModalButton.tsx:76 +#: src/components/report/UpdateReportModalButton.tsx:133 msgid "Update Report" msgstr "Bijwerken rapport" -#: src/components/report/UpdateReportModalButton.tsx:64 +#: src/components/report/UpdateReportModalButton.tsx:65 msgid "Update the report to include the latest data" msgstr "Bijwerken rapport om de meest recente gegevens te bevatten" -#: src/components/report/UpdateReportModalButton.tsx:91 +#: src/components/report/UpdateReportModalButton.tsx:100 msgid "Update your report to include the latest changes in your project. The link to share the report would remain the same." msgstr "Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven." @@ -4428,31 +4748,36 @@ msgstr "Upgraden" msgid "Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly." msgstr "Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct." +#: src/components/settings/WhitelabelLogoCard.tsx:152 #: src/components/project/ProjectUploadSection.tsx:15 -#: src/components/dropzone/UploadConversationDropzone.tsx:504 -#: src/components/conversation/ConversationAccordion.tsx:409 +#: src/components/dropzone/UploadConversationDropzone.tsx:506 +#: src/components/conversation/ConversationAccordion.tsx:414 msgid "Upload" msgstr "Uploaden" +#: src/components/settings/WhitelabelLogoCard.tsx:100 +msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Upload een custom logo om het Dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids." + #~ msgid "Upload Audio" #~ msgstr "Audio uploaden" -#: src/components/dropzone/UploadConversationDropzone.tsx:517 +#: src/components/dropzone/UploadConversationDropzone.tsx:519 msgid "Upload Complete" msgstr "Upload voltooid" -#: src/components/dropzone/UploadConversationDropzone.tsx:498 +#: src/components/dropzone/UploadConversationDropzone.tsx:499 msgid "Upload conversations" msgstr "Gesprekken uploaden" #~ msgid "Upload documents" #~ msgstr "Upload documenten" -#: src/components/dropzone/UploadConversationDropzone.tsx:334 +#: src/components/dropzone/UploadConversationDropzone.tsx:335 msgid "Upload failed. Please try again." msgstr "Upload mislukt. Probeer het opnieuw." -#: src/components/dropzone/UploadConversationDropzone.tsx:694 +#: src/components/dropzone/UploadConversationDropzone.tsx:725 msgid "Upload Files" msgstr "Bestanden uploaden" @@ -4465,43 +4790,47 @@ msgstr "Bestanden uploaden" #~ msgid "Uploaded" #~ msgstr "Uploaded" -#: src/components/dropzone/UploadConversationDropzone.tsx:518 +#: src/components/dropzone/UploadConversationDropzone.tsx:520 msgid "Uploading Audio Files..." msgstr "Audio bestanden uploaden..." #. js-lingui-explicit-id -#: src/components/participant/StopRecordingConfirmationModal.tsx:60 +#: src/components/participant/StopRecordingConfirmationModal.tsx:62 msgid "participant.modal.uploading" msgstr "Audio uploaden..." #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationAudio.tsx:550 +#: src/components/participant/ParticipantConversationAudio.tsx:556 msgid "participant.modal.interruption.uploading" msgstr "Audio uploaden..." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:211 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:406 msgid "URL is required" -msgstr "" +msgstr "URL is vereist" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:208 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:403 msgid "URL must start with http:// or https://" -msgstr "" +msgstr "URL moet beginnen met http:// of https://" #~ msgid "Use experimental features" #~ msgstr "Experimentele functies gebruiken" -#: src/components/conversation/RetranscribeConversation.tsx:152 +#: src/components/conversation/RetranscribeConversation.tsx:169 msgid "Use PII Redaction" msgstr "PII redaction gebruiken" -#: src/routes/project/chat/ProjectChatRoute.tsx:748 -#: src/routes/project/chat/ProjectChatRoute.tsx:778 +#: src/routes/project/chat/ProjectChatRoute.tsx:765 +#: src/routes/project/chat/ProjectChatRoute.tsx:795 msgid "Use Shift + Enter to add a new line" msgstr "Gebruik Shift + Enter om een nieuwe regel toe te voegen" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:820 +#: src/components/settings/WhitelabelLogoCard.tsx:134 +msgid "Using default Dembrane logo" +msgstr "Gebruik standaard Dembrane-logo" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" -msgstr "" +msgstr "Gebruik webhooks? We zouden graag van je horen" #~ msgid "Verification Topics" #~ msgstr "Verificatie-onderwerpen" @@ -4510,17 +4839,17 @@ msgstr "" #~ msgstr "geverifieerd" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:111 +#: src/components/conversation/SelectAllConfirmationModal.tsx:112 msgid "select.all.modal.verified" msgstr "Geverifieerd" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:436 +#: src/components/conversation/SelectAllConfirmationModal.tsx:444 msgid "select.all.modal.loading.verified" msgstr "Geverifieerd" #. js-lingui-explicit-id -#: src/components/conversation/ConversationAccordion.tsx:1333 +#: src/components/conversation/ConversationAccordion.tsx:1347 msgid "conversation.filters.verified.text" msgstr "Geverifieerd" @@ -4530,11 +4859,21 @@ msgstr "Geverifieerd" #~ msgid "Verified Artefacts" #~ msgstr "Geverifieerde artefacten" -#: src/components/conversation/ConversationAccordion.tsx:579 +#: src/components/conversation/ConversationAccordion.tsx:569 msgid "verified artifacts" msgstr "geverifieerde artefacten" -#: src/routes/auth/Login.tsx:277 +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" +msgstr "dembrane Verifiëren" + +#. js-lingui-explicit-id +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verifiëren" + +#: src/routes/auth/Login.tsx:288 msgid "Verify code" msgstr "Code verifiëren" @@ -4555,11 +4894,11 @@ msgstr "Weergave" msgid "View Details" msgstr "Bekijk details" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:601 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:827 msgid "View example payload" -msgstr "" +msgstr "Voorbeeld payload bekijken" -#: src/components/participant/ParticipantBody.tsx:229 +#: src/components/participant/ParticipantBody.tsx:242 msgid "View your responses" msgstr "Bekijk je reacties" @@ -4580,7 +4919,7 @@ msgstr "Wil je een template toevoegen aan \"Dembrane\"?" #~ msgstr "Waarschuwing: je hebt {0} sleutelwoorden toegevoegd. Alleen de eerste {ASSEMBLYAI_MAX_HOTWORDS} worden door de transcriptie-engine gebruikt." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:366 +#: src/components/participant/MicrophoneTest.tsx:389 msgid "participant.alert.microphone.access.issue" msgstr "We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen." @@ -4601,7 +4940,7 @@ msgstr "We konden tweestapsverificatie niet inschakelen. Controleer je code en p #~ msgid "We have sent you an email with next steps. If you don't see it, check your spam folder." #~ msgstr "We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap." -#: src/routes/auth/CheckYourEmail.tsx:14 +#: src/routes/auth/CheckYourEmail.tsx:15 msgid "We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com" msgstr "We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com" @@ -4610,15 +4949,15 @@ msgstr "We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:450 -msgid "participant.modal.refine.info.reason" -msgstr "We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven." +msgid "participant.modal.echo.info.reason" +msgstr "We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven." -#: src/routes/participant/ParticipantPostConversation.tsx:252 +#: src/routes/participant/ParticipantPostConversation.tsx:263 msgid "We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time." msgstr "We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden." #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:291 +#: src/components/participant/MicrophoneTest.tsx:292 msgid "participant.test.microphone.description" msgstr "We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen." @@ -4629,34 +4968,34 @@ msgstr "We testen je microfoon om de beste ervaring voor iedereen in de sessie t msgid "We’re picking up some silence. Try speaking up so your voice comes through clearly." msgstr "We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft." -#: src/components/project/webhooks/WebhookSettingsCard.tsx:745 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:971 msgid "Webhook" -msgstr "" +msgstr "Webhook" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:216 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:411 msgid "Webhook URL" -msgstr "" +msgstr "Webhook URL" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:701 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:927 msgid "Webhooks" -msgstr "" +msgstr "Webhooks" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:545 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:742 msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -msgstr "" +msgstr "Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \"notificatiesysteem\" voor uw andere tools." -#: src/components/participant/ParticipantBody.tsx:124 +#: src/components/participant/ParticipantBody.tsx:125 msgid "Welcome" msgstr "Welkom" -#: src/routes/auth/Login.tsx:108 +#: src/routes/auth/Login.tsx:109 msgid "Welcome back" msgstr "Welkom terug" #~ msgid "Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode." #~ msgstr "Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:529 +#: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." msgstr "Welkom bij Dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud." @@ -4667,57 +5006,77 @@ msgstr "Welkom bij Dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode." -#: src/routes/project/chat/ProjectChatRoute.tsx:528 +#: src/routes/project/chat/ProjectChatRoute.tsx:535 msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode." msgstr "Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode." -#: src/components/report/CreateReportForm.tsx:79 +#: src/components/report/CreateReportForm.tsx:80 msgid "Welcome to Reports!" msgstr "Welkom bij Rapporten!" -#: src/routes/project/ProjectsHome.tsx:152 +#: src/routes/project/ProjectsHome.tsx:154 msgid "Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \"Create\" to configure to get started!" msgstr "Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \"Maak\" om te beginnen!" -#: src/routes/auth/Login.tsx:191 +#: src/routes/auth/Login.tsx:192 msgid "Welcome!" msgstr "Welkom!" -#: src/components/chat/ChatModeSelector.tsx:46 +#: src/components/chat/ChatModeSelector.tsx:47 msgid "What are the main themes across all conversations?" msgstr "Wat zijn de belangrijkste thema's in alle gesprekken?" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:538 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:735 msgid "What are webhooks? (2 min read)" -msgstr "" +msgstr "Wat zijn webhooks? (2 min lezen)" -#: src/components/project/webhooks/WebhookSettingsCard.tsx:576 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:799 msgid "What data is sent?" -msgstr "" +msgstr "Wat gegevens worden verzonden?" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:196 +#: src/components/participant/verify/VerifySelection.tsx:201 msgid "participant.concrete.selection.title" msgstr "Kies een concreet voorbeeld" #~ msgid "What kind of question do you want to ask for this document?" #~ msgstr "Wat voor soort vraag wil je stellen voor dit document?" -#: src/components/chat/ChatModeSelector.tsx:48 +#: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" msgstr "Welke patronen zie je in de data?" -#: src/components/chat/ChatModeSelector.tsx:54 +#: src/components/chat/ChatModeSelector.tsx:55 msgid "What were the key moments in this conversation?" msgstr "Wat waren de belangrijkste momenten in dit gesprek?" -#: src/components/chat/ChatModeSelector.tsx:242 +#: src/components/chat/ChatModeSelector.tsx:250 msgid "What would you like to explore?" msgstr "Wat wil je verkennen?" -#: src/components/report/CreateReportForm.tsx:120 +#: src/components/project/webhooks/WebhookSettingsCard.tsx:778 +msgid "When a participant opens the portal, enters their details, and begins a conversation" +msgstr "Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:785 +msgid "When all audio has been converted to text and the full transcript is available" +msgstr "Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is" + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:773 +msgid "When are webhooks triggered?" +msgstr "Wanneer worden webhooks geactiveerd?" + +#: src/components/project/ProjectPortalEditor.tsx:1178 +msgid "When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations." +msgstr "Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken." + +#: src/components/project/webhooks/WebhookSettingsCard.tsx:792 +msgid "When the summary is ready (includes both transcript and summary)" +msgstr "Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)" + +#: src/components/report/CreateReportForm.tsx:121 msgid "will be included in your report" -msgstr "wordt in uw rapport opgenomen" +msgstr "wordt in je rapport opgenomen" #~ msgid "Workspaces" #~ msgstr "Werkruimtes" @@ -4728,7 +5087,7 @@ msgid "add.tag.filter.modal.description" msgstr "Wilt u deze tag toevoegen aan uw huidige filters?" #. js-lingui-explicit-id -#: src/components/participant/ParticipantConversationText.tsx:177 +#: src/components/participant/ParticipantConversationText.tsx:179 msgid "participant.button.finish.yes.text.mode" msgstr "Ja" @@ -4738,12 +5097,12 @@ msgstr "Jij" #: src/routes/project/unsubscribe/ProjectUnsubscribe.tsx:81 msgid "You are already unsubscribed or your link is invalid." -msgstr "U bent al afgemeld of uw link is ongeldig." +msgstr "Je bent al afgemeld of je link is ongeldig." #. placeholder {0}: MAX_FILES - selectedFiles.length -#: src/components/dropzone/UploadConversationDropzone.tsx:399 +#: src/components/dropzone/UploadConversationDropzone.tsx:400 msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} files will be added." -msgstr "U kunt maximaal {MAX_FILES} bestanden tegelijk uploaden. Alleen de eerste {0} bestanden worden toegevoegd." +msgstr "Je kunt maximaal {MAX_FILES} bestanden tegelijk uploaden. Alleen de eerste {0} bestanden worden toegevoegd." #~ msgid "You can still use the Ask feature to chat with any conversation" #~ msgstr "Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten" @@ -4752,16 +5111,16 @@ msgstr "U kunt maximaal {MAX_FILES} bestanden tegelijk uploaden. Alleen de eerst #~ msgstr "Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!" #. js-lingui-explicit-id -#: src/components/conversation/SelectAllConfirmationModal.tsx:247 +#: src/components/conversation/SelectAllConfirmationModal.tsx:249 msgid "select.all.modal.already.added" msgstr "U heeft al <0>{existingContextCount, plural, one {# conversatie} other {# conversaties}} aan deze chat toegevoegd." -#: src/components/conversation/ConversationAccordion.tsx:1364 +#: src/components/conversation/ConversationAccordion.tsx:1378 msgid "You have already added all the conversations related to this" msgstr "Je hebt alle gerelateerde gesprekken al toegevoegd" #. js-lingui-explicit-id -#: src/components/participant/MicrophoneTest.tsx:391 +#: src/components/participant/MicrophoneTest.tsx:415 msgid "participant.modal.change.mic.confirmation.text" msgstr "Je hebt je microfoon gewisseld. Klik op \"Doorgaan\" om verder te gaan met de sessie." @@ -4772,28 +5131,28 @@ msgstr "Je hebt je microfoon gewisseld. Klik op \"Doorgaan\" om verder te gaan m msgid "You have successfully unsubscribed." msgstr "U hebt succesvol afgemeld." -#: src/routes/participant/ParticipantPostConversation.tsx:136 +#: src/routes/participant/ParticipantPostConversation.tsx:128 msgid "You may also choose to record another conversation." msgstr "Je kunt er ook voor kiezen om een ander gesprek op te nemen." #~ msgid "You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts." #~ msgstr "Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren." -#: src/routes/auth/Login.tsx:172 +#: src/routes/auth/Login.tsx:173 msgid "You must login with the same provider you used to sign up. If you face any issues, please contact support." msgstr "Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning." -#: src/components/participant/ParticipantBody.tsx:142 +#: src/components/participant/ParticipantBody.tsx:143 msgid "You seem to be offline, please check your internet connection" msgstr "Je lijkt offline te zijn, controleer je internetverbinding" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 +#: src/components/participant/verify/VerifyInstructions.tsx:18 msgid "participant.concrete.instructions.receive.artefact" msgstr "Je krijgt zo een concreet voorbeeld (artefact) om mee te werken" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 +#: src/components/participant/verify/VerifyInstructions.tsx:53 msgid "participant.concrete.instructions.approval.helps" msgstr "Als je dit goedkeurt, helpt dat om het proces te verbeteren" @@ -4810,11 +5169,11 @@ msgstr "Uw invoer wordt automatisch opgeslagen." #~ msgid "Your library is empty. Create a library to see your first insights." #~ msgstr "Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken." -#: src/routes/participant/ParticipantPostConversation.tsx:133 +#: src/routes/participant/ParticipantPostConversation.tsx:125 msgid "Your response has been recorded. You may now close this tab." msgstr "Je antwoord is opgeslagen. Je kunt dit tabblad sluiten." -#: src/components/participant/ParticipantBody.tsx:239 +#: src/components/participant/ParticipantBody.tsx:252 msgid "Your responses" msgstr "Je reacties" @@ -4823,7 +5182,7 @@ msgid "Your view has been created. Please wait as we process and analyse the dat msgstr "Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren." #. js-lingui-explicit-id -#: src/routes/project/library/ProjectLibrary.tsx:262 +#: src/routes/project/library/ProjectLibrary.tsx:260 msgid "library.views.title" msgstr "Je weergaven" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index dc547996..dc222ece 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.echo\":[\"ECHO\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Meldingen\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Dembrane Verify in te schakelen.\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Beschikbaar\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"iH8pgl\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Gemaakt op\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"ZQKLI1\":[\"Gevarenzone\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Dembrane Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Drag to reorder\"],\"KIjvtr\":[\"Nederlands\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"ycR/52\":[\"Dembrane Echo inschakelen\"],\"mKGCnZ\":[\"Dembrane ECHO inschakelen\"],\"Dh2kHP\":[\"Dembrane Reactie inschakelen\"],\"d9rIJ1\":[\"Dembrane Verify inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"+uY23Q\":[\"No webhooks configured\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optional\"],\"0zpgxV\":[\"Opties\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"participant.button.refine\":[\"Verfijnen\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"4LFZoj\":[\"Code verifiëren\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij Dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"KcnIXL\":[\"wordt in uw rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"U bent al afgemeld of uw link is ongeldig.\"],\"E71LBI\":[\"U kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij Dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Dembrane Verify in te schakelen.\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Dembrane Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"ycR/52\":[\"Dembrane Echo inschakelen\"],\"mKGCnZ\":[\"Dembrane ECHO inschakelen\"],\"Dh2kHP\":[\"Dembrane Reactie inschakelen\"],\"d9rIJ1\":[\"Dembrane Verify inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het Dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard Dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"participant.echo.verify\":[\"Verifiëren\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij Dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij Dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file From 6606a20c7ddb460fce02b63114d50124b77cd430 Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 11:12:54 +0000 Subject: [PATCH 08/12] - translations "dembrane" to lowercase at all places --- echo/frontend/src/locales/en-US.po | 50 +++++++++++++++--------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 070ff821..0b82c043 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -887,8 +887,8 @@ msgstr "Aspects" #~ msgstr "Assistant is typing..." #: src/components/project/ProjectPortalEditor.tsx:808 -#~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "At least one topic must be selected to enable Dembrane Verify" +#~ msgid "At least one topic must be selected to enable Verify" +#~ msgstr "At least one topic must be selected to enable Verify" #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" @@ -1543,20 +1543,20 @@ msgstr "Deleted successfully" #: src/components/project/ProjectPortalEditor.tsx:386 #~ msgid "Dembrane Echo" -#~ msgstr "Dembrane Echo" +#~ msgstr "Echo" #: src/components/project/ProjectPortalEditor.tsx:536 #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane is powered by AI. Please double-check responses." +msgstr "dembrane is powered by AI. Please double-check responses." #: src/components/project/ProjectBasicEdit.tsx:156 #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Reply" +#~ msgstr "Reply" #: src/components/project/ProjectBasicEdit.tsx:82 #~ msgid "Description" @@ -1768,20 +1768,20 @@ msgid "Enable 2FA" msgstr "Enable 2FA" #: src/components/project/ProjectPortalEditor.tsx:412 -#~ msgid "Enable Dembrane Echo" -#~ msgstr "Enable Dembrane Echo" +#~ msgid "Enable Echo" +#~ msgstr "Enable Echo" #: src/components/project/ProjectPortalEditor.tsx:562 -#~ msgid "Enable Dembrane ECHO" -#~ msgstr "Enable Dembrane ECHO" +#~ msgid "Enable ECHO" +#~ msgstr "Enable ECHO" #: src/components/project/ProjectBasicEdit.tsx:181 -#~ msgid "Enable Dembrane Reply" -#~ msgstr "Enable Dembrane Reply" +#~ msgid "Enable Reply" +#~ msgstr "Enable Reply" #: src/components/project/ProjectPortalEditor.tsx:734 -#~ msgid "Enable Dembrane Verify" -#~ msgstr "Enable Dembrane Verify" +#~ msgid "Enable Verify" +#~ msgstr "Enable Verify" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -2315,12 +2315,12 @@ msgstr "German" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Get an immediate reply from dembrane to help you deepen the conversation." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Get an immediate reply from dembrane to help you deepen the conversation." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -4360,7 +4360,7 @@ msgstr "Tags" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4937,7 +4937,7 @@ msgstr "Upload" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide." #: src/components/dropzone/UploadConversationDropzone.tsx:504 #~ msgid "Upload Audio" @@ -5008,7 +5008,7 @@ msgstr "Use Shift + Enter to add a new line" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Using default Dembrane logo" +msgstr "Using default dembrane logo" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -5050,14 +5050,14 @@ msgid "verified artifacts" msgstr "verified artifacts" #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:73 -msgid "participant.echo.verify" +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" msgstr "Verify" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:839 -msgid "dashboard.dembrane.verify.title" -msgstr "Dembrane Verify" +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verify" #: src/routes/auth/Login.tsx:288 msgid "Verify code" @@ -5195,7 +5195,7 @@ msgstr "Welcome back" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." +msgstr "Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" From 6c85464308a900811e1dfe1ac648a0533008d16e Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 11:23:53 +0000 Subject: [PATCH 09/12] - translation fixes --- echo/frontend/src/locales/de-DE.po | 38 ++++++++++----------- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 16 +++------ echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 34 +++++++++---------- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 42 +++++++++++------------ echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 54 +++++++++++++----------------- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 36 ++++++++++---------- echo/frontend/src/locales/nl-NL.ts | 2 +- 12 files changed, 108 insertions(+), 124 deletions(-) diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index a5af6bc0..4f412de4 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -633,7 +633,7 @@ msgstr "Aspekte" #~ msgstr "Assistent schreibt..." #~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "At least one topic must be selected to enable Dembrane Verify" +#~ msgstr "At least one topic must be selected to enable Verify" #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" @@ -1233,7 +1233,7 @@ msgstr "Dashboard-URL (direkter Link zur Gesprächsübersicht)" #~ msgstr "Experimental" #~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" +#~ msgstr "Verify" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." @@ -1275,18 +1275,18 @@ msgid "Deleted successfully" msgstr "Erfolgreich gelöscht" #~ msgid "Dembrane Echo" -#~ msgstr "Dembrane Echo" +#~ msgstr "Echo" #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane läuft mit KI. Prüf die Antworten noch mal gegen." +msgstr "dembrane läuft mit KI. Prüf die Antworten noch mal gegen." #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Antwort" +#~ msgstr "Antwort" #: src/components/chat/templates.ts:61 msgid "" @@ -1481,16 +1481,16 @@ msgid "Enable 2FA" msgstr "2FA aktivieren" #~ msgid "Enable Dembrane Echo" -#~ msgstr "Dembrane Echo aktivieren" +#~ msgstr "Echo aktivieren" #~ msgid "Enable Dembrane ECHO" -#~ msgstr "Dembrane ECHO aktivieren" +#~ msgstr "ECHO aktivieren" #~ msgid "Enable Dembrane Reply" -#~ msgstr "Dembrane Antwort aktivieren" +#~ msgstr "Antwort aktivieren" #~ msgid "Enable Dembrane Verify" -#~ msgstr "Enable Dembrane Verify" +#~ msgstr "Enable Verify" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -1532,7 +1532,7 @@ msgid "Enable this feature to allow participants to request AI-powered responses msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Explore\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -#~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Dembrane Antwort\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." +#~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \"Antwort\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen." #: src/components/project/ProjectPortalEditor.tsx:577 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." @@ -1989,12 +1989,12 @@ msgstr "Deutsch" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen." +msgstr "Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen." +msgstr "Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -2206,7 +2206,7 @@ msgstr "Italienisch" #: src/components/project/ProjectQRCode.tsx:103 #~ msgid "Join {0} on Dembrane" -#~ msgstr "Treten Sie {0} auf Dembrane bei" +#~ msgstr "Treten Sie {0} auf dembrane bei" #: src/components/common/DembraneLoadingSpinner/index.tsx:27 msgid "Just a moment" @@ -4038,7 +4038,7 @@ msgstr "Tags" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen." +msgstr "Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4574,7 +4574,7 @@ msgstr "Hochladen" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Ein benutzerdefiniertes Logo hochladen, um das Dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen." +msgstr "Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen." #~ msgid "Upload Audio" #~ msgstr "Audio hochladen" @@ -4640,7 +4640,7 @@ msgstr "Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Standard-Dembrane-Logo verwendet" +msgstr "Standard-dembrane-Logo verwendet" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -4680,7 +4680,7 @@ msgstr "verifizierte Artefakte" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:839 msgid "dashboard.dembrane.verify.title" -msgstr "dembrane Verifizieren" +msgstr "Verifizieren" #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:73 @@ -4811,7 +4811,7 @@ msgstr "Welcome back" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "Willkommen beim Dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen." +msgstr "Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index 794cc7bd..0b356312 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Dembrane Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"ycR/52\":[\"Dembrane Echo aktivieren\"],\"mKGCnZ\":[\"Dembrane ECHO aktivieren\"],\"Dh2kHP\":[\"Dembrane Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Dembrane Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf Dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von Dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das Dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-Dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"participant.echo.verify\":[\"Verifizieren\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim Dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 0b82c043..ad009b02 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -886,10 +886,6 @@ msgstr "Aspects" #~ msgid "Assistant is typing..." #~ msgstr "Assistant is typing..." -#: src/components/project/ProjectPortalEditor.tsx:808 -#~ msgid "At least one topic must be selected to enable Verify" -#~ msgstr "At least one topic must be selected to enable Verify" - #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" #~ msgstr "At least one topic must be selected to enable Make it concrete" @@ -1775,14 +1771,6 @@ msgstr "Enable 2FA" #~ msgid "Enable ECHO" #~ msgstr "Enable ECHO" -#: src/components/project/ProjectBasicEdit.tsx:181 -#~ msgid "Enable Reply" -#~ msgstr "Enable Reply" - -#: src/components/project/ProjectPortalEditor.tsx:734 -#~ msgid "Enable Verify" -#~ msgstr "Enable Verify" - #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" msgstr "Enable Explore" @@ -1799,6 +1787,10 @@ msgstr "Enable Explore" msgid "Enable participation" msgstr "Enable participation" +#: src/components/project/ProjectBasicEdit.tsx:181 +#~ msgid "Enable Reply" +#~ msgstr "Enable Reply" + #: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Enable Report Notifications" diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 4a02b1de..c3b34f79 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default Dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verify\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index 53ebe792..8ef06559 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -636,7 +636,7 @@ msgstr "Aspectos" #~ msgstr "El asistente está escribiendo..." #~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "At least one topic must be selected to enable Dembrane Verify" +#~ msgstr "At least one topic must be selected to enable Verify" #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" @@ -1236,7 +1236,7 @@ msgstr "URL del panel de control (enlace directo a la vista de conversaciones)" #~ msgstr "Experimental" #~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" +#~ msgstr "Verify" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." @@ -1278,18 +1278,18 @@ msgid "Deleted successfully" msgstr "Eliminado con éxito" #~ msgid "Dembrane Echo" -#~ msgstr "Dembrane Echo" +#~ msgstr "Echo" #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane funciona con IA. Revisa bien las respuestas." +msgstr "dembrane funciona con IA. Revisa bien las respuestas." #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Respuesta" +#~ msgstr "Respuesta" #: src/components/chat/templates.ts:61 msgid "" @@ -1484,16 +1484,16 @@ msgid "Enable 2FA" msgstr "Activar 2FA" #~ msgid "Enable Dembrane Echo" -#~ msgstr "Habilitar Dembrane Echo" +#~ msgstr "Habilitar Echo" #~ msgid "Enable Dembrane ECHO" -#~ msgstr "Habilitar Dembrane ECHO" +#~ msgstr "Habilitar ECHO" #~ msgid "Enable Dembrane Reply" -#~ msgstr "Habilitar Dembrane Respuesta" +#~ msgstr "Habilitar Respuesta" #~ msgid "Enable Dembrane Verify" -#~ msgstr "Activar Dembrane Verify" +#~ msgstr "Activar Verify" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -1992,12 +1992,12 @@ msgstr "Alemán" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación." +msgstr "Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación." +msgstr "Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -4044,7 +4044,7 @@ msgstr "Etiquetas" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación." +msgstr "Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4578,7 +4578,7 @@ msgstr "Subir" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Sube un logo personalizado para reemplazar el logo de Dembrane en el portal, panel de control, informes y guía de host." +msgstr "Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host." #~ msgid "Upload Audio" #~ msgstr "Subir Audio" @@ -4644,7 +4644,7 @@ msgstr "Usa Shift + Enter para agregar una nueva línea" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Usando el logo de Dembrane por defecto" +msgstr "Usando el logo de dembrane por defecto" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -4684,7 +4684,7 @@ msgstr "verified artifacts" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:839 msgid "dashboard.dembrane.verify.title" -msgstr "dembrane Verificar" +msgstr "Verificar" #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:73 @@ -4815,7 +4815,7 @@ msgstr "Bienvenido de nuevo" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "¡Bienvenido a Dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados." +msgstr "¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index c5b103ac..abd840ac 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Dembrane Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"ycR/52\":[\"Habilitar Dembrane Echo\"],\"mKGCnZ\":[\"Habilitar Dembrane ECHO\"],\"Dh2kHP\":[\"Habilitar Dembrane Respuesta\"],\"d9rIJ1\":[\"Activar Dembrane Verify\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de Dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de Dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de Dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verificar\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a Dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index ce46568d..20a5266e 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -651,7 +651,7 @@ msgstr "Aspects" #~ msgstr "L'assistant écrit..." #~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "At least one topic must be selected to enable Dembrane Verify" +#~ msgstr "At least one topic must be selected to enable Verify" #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" @@ -1251,7 +1251,7 @@ msgstr "URL du tableau de bord (lien direct vers l'aperçu de la conversation)" #~ msgstr "Experimental" #~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" +#~ msgstr "Verify" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Select which topics participants can use for verification." @@ -1293,18 +1293,18 @@ msgid "Deleted successfully" msgstr "Supprimé avec succès" #~ msgid "Dembrane Echo" -#~ msgstr "Echo Dembrane" +#~ msgstr "Echo" #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane est propulsé par l’IA. Vérifie bien les réponses." +msgstr "dembrane est propulsé par l’IA. Vérifie bien les réponses." #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Réponse" +#~ msgstr "Réponse" #: src/components/chat/templates.ts:61 msgid "" @@ -1499,16 +1499,16 @@ msgid "Enable 2FA" msgstr "Activer 2FA" #~ msgid "Enable Dembrane Echo" -#~ msgstr "Activer Dembrane Echo" +#~ msgstr "Activer Echo" #~ msgid "Enable Dembrane ECHO" -#~ msgstr "Activer Dembrane ECHO" +#~ msgstr "Activer ECHO" #~ msgid "Enable Dembrane Reply" -#~ msgstr "Activer la réponse Dembrane" +#~ msgstr "Activer la réponse" #~ msgid "Enable Dembrane Verify" -#~ msgstr "Enable Dembrane Verify" +#~ msgstr "Activer Verify" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -1550,7 +1550,7 @@ msgid "Enable this feature to allow participants to request AI-powered responses msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \"Explorer\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes." #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Get Reply\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." -#~ msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \"Dembrane Réponse\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes." +#~ msgstr "Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \"dembrane Réponse\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes." #: src/components/project/ProjectPortalEditor.tsx:577 #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." @@ -2007,12 +2007,12 @@ msgstr "Allemand" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation." +msgstr "Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation." +msgstr "Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -4059,7 +4059,7 @@ msgstr "Étiquettes" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4593,7 +4593,7 @@ msgstr "Télécharger" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Téléchargez un logo personnalisé pour remplacer le logo Dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte." +msgstr "Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte." #~ msgid "Upload Audio" #~ msgstr "Télécharger l'audio" @@ -4659,7 +4659,7 @@ msgstr "Utilisez Shift + Entrée pour ajouter une nouvelle ligne" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Utilisation du logo Dembrane par défaut" +msgstr "Utilisation du logo dembrane par défaut" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -4699,7 +4699,7 @@ msgstr "artefacts vérifiés" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:839 msgid "dashboard.dembrane.verify.title" -msgstr "dembrane Vérifier" +msgstr "Vérifier" #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:73 @@ -4740,7 +4740,7 @@ msgstr "Voir vos réponses" #: src/components/chat/TemplatesModal.tsx:118 msgid "Want to add a template to \"Dembrane\"?" -msgstr "Tu veux ajouter un template à « Dembrane » ?" +msgstr "Tu veux ajouter un template à « dembrane » ?" #~ msgid "Want to add a template to ECHO?" #~ msgstr "Voulez-vous ajouter un modèle à ECHO?" @@ -4834,11 +4834,11 @@ msgstr "Bon retour" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "Bienvenue sur Dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées." +msgstr "Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" -msgstr "Bienvenue sur Dembrane!" +msgstr "Bienvenue sur dembrane!" #~ msgid "Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode." #~ msgstr "Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive." @@ -4936,7 +4936,7 @@ msgid "You can only upload up to {MAX_FILES} files at a time. Only the first {0} msgstr "Vous ne pouvez télécharger que jusqu'à {MAX_FILES} fichiers à la fois. Seuls les premiers {0} fichiers seront ajoutés." #~ msgid "You can still use the Ask feature to chat with any conversation" -#~ msgstr "Vous pouvez toujours utiliser la fonction Dembrane Ask pour discuter avec n'importe quelle conversation" +#~ msgstr "Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation" #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:249 diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 8463d74c..a6ae8c0e 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo Dembrane\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Dembrane Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"ycR/52\":[\"Activer Dembrane Echo\"],\"mKGCnZ\":[\"Activer Dembrane ECHO\"],\"Dh2kHP\":[\"Activer la réponse Dembrane\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"Dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de Dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo Dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo Dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"participant.echo.verify\":[\"Vérifier\"],\"dashboard.dembrane.verify.title\":[\"dembrane Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « Dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur Dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur Dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction Dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 070ff821..ad009b02 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -886,10 +886,6 @@ msgstr "Aspects" #~ msgid "Assistant is typing..." #~ msgstr "Assistant is typing..." -#: src/components/project/ProjectPortalEditor.tsx:808 -#~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "At least one topic must be selected to enable Dembrane Verify" - #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" #~ msgstr "At least one topic must be selected to enable Make it concrete" @@ -1543,20 +1539,20 @@ msgstr "Deleted successfully" #: src/components/project/ProjectPortalEditor.tsx:386 #~ msgid "Dembrane Echo" -#~ msgstr "Dembrane Echo" +#~ msgstr "Echo" #: src/components/project/ProjectPortalEditor.tsx:536 #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane is powered by AI. Please double-check responses." +msgstr "dembrane is powered by AI. Please double-check responses." #: src/components/project/ProjectBasicEdit.tsx:156 #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Reply" +#~ msgstr "Reply" #: src/components/project/ProjectBasicEdit.tsx:82 #~ msgid "Description" @@ -1768,20 +1764,12 @@ msgid "Enable 2FA" msgstr "Enable 2FA" #: src/components/project/ProjectPortalEditor.tsx:412 -#~ msgid "Enable Dembrane Echo" -#~ msgstr "Enable Dembrane Echo" +#~ msgid "Enable Echo" +#~ msgstr "Enable Echo" #: src/components/project/ProjectPortalEditor.tsx:562 -#~ msgid "Enable Dembrane ECHO" -#~ msgstr "Enable Dembrane ECHO" - -#: src/components/project/ProjectBasicEdit.tsx:181 -#~ msgid "Enable Dembrane Reply" -#~ msgstr "Enable Dembrane Reply" - -#: src/components/project/ProjectPortalEditor.tsx:734 -#~ msgid "Enable Dembrane Verify" -#~ msgstr "Enable Dembrane Verify" +#~ msgid "Enable ECHO" +#~ msgstr "Enable ECHO" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -1799,6 +1787,10 @@ msgstr "Enable Explore" msgid "Enable participation" msgstr "Enable participation" +#: src/components/project/ProjectBasicEdit.tsx:181 +#~ msgid "Enable Reply" +#~ msgstr "Enable Reply" + #: src/components/project/ProjectPortalEditor.tsx:1007 msgid "Enable Report Notifications" msgstr "Enable Report Notifications" @@ -2315,12 +2307,12 @@ msgstr "German" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Get an immediate reply from dembrane to help you deepen the conversation." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Get an immediate reply from dembrane to help you deepen the conversation." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -4360,7 +4352,7 @@ msgstr "Tags" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." +msgstr "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4937,7 +4929,7 @@ msgstr "Upload" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." +msgstr "Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide." #: src/components/dropzone/UploadConversationDropzone.tsx:504 #~ msgid "Upload Audio" @@ -5008,7 +5000,7 @@ msgstr "Use Shift + Enter to add a new line" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Using default Dembrane logo" +msgstr "Using default dembrane logo" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -5050,14 +5042,14 @@ msgid "verified artifacts" msgstr "verified artifacts" #. js-lingui-explicit-id -#: src/components/participant/refine/RefineSelection.tsx:73 -msgid "participant.echo.verify" +#: src/components/project/ProjectPortalEditor.tsx:839 +msgid "dashboard.dembrane.verify.title" msgstr "Verify" #. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:839 -msgid "dashboard.dembrane.verify.title" -msgstr "Dembrane Verify" +#: src/components/participant/refine/RefineSelection.tsx:73 +msgid "participant.echo.verify" +msgstr "Verify" #: src/routes/auth/Login.tsx:288 msgid "Verify code" @@ -5195,7 +5187,7 @@ msgstr "Welcome back" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." +msgstr "Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index 4a02b1de..c3b34f79 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"5PKg7S\":[\"At least one topic must be selected to enable Dembrane Verify\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Dembrane Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"ycR/52\":[\"Enable Dembrane Echo\"],\"mKGCnZ\":[\"Enable Dembrane ECHO\"],\"Dh2kHP\":[\"Enable Dembrane Reply\"],\"d9rIJ1\":[\"Enable Dembrane Verify\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from Dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default Dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"participant.echo.verify\":[\"Verify\"],\"dashboard.dembrane.verify.title\":[\"Dembrane Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index 01f242f1..f53b6eae 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -260,7 +260,7 @@ msgid "library.conversations.still.processing" msgstr "{0} worden nog verwerkt." #~ msgid "*At Dembrane, privacy is super important!*" -#~ msgstr "*Bij Dembrane staat privacy op een!*" +#~ msgstr "*Bij dembrane staat privacy op een!*" #~ msgid "*Oh, we don't have a cookie statement because we don't use cookies! We eat them.*" #~ msgstr "*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*" @@ -684,7 +684,7 @@ msgstr "Aspecten" #~ msgstr "Assistent is aan het typen..." #~ msgid "At least one topic must be selected to enable Dembrane Verify" -#~ msgstr "Er moet minstens één onderwerp zijn geselecteerd om Dembrane Verify in te schakelen." +#~ msgstr "Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen." #: src/components/project/ProjectPortalEditor.tsx:879 #~ msgid "At least one topic must be selected to enable Make it concrete" @@ -1296,7 +1296,7 @@ msgstr "Dashboard URL (directe link naar gespreksoverzicht)" #~ msgstr "Experimenteel" #~ msgid "dashboard.dembrane.verify.title" -#~ msgstr "Dembrane Verify" +#~ msgstr "Verify" #~ msgid "dashboard.dembrane.verify.topic.select" #~ msgstr "Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken." @@ -1341,18 +1341,18 @@ msgid "Deleted successfully" msgstr "Verwijderd succesvol" #~ msgid "Dembrane Echo" -#~ msgstr "Dembrane Echo" +#~ msgstr "Echo" #~ msgid "Dembrane ECHO" -#~ msgstr "Dembrane ECHO" +#~ msgstr "ECHO" #: src/routes/project/chat/ProjectChatRoute.tsx:768 #: src/routes/project/chat/ProjectChatRoute.tsx:798 msgid "Dembrane is powered by AI. Please double-check responses." -msgstr "Dembrane draait op AI. Check de antwoorden extra goed." +msgstr "dembrane draait op AI. Check de antwoorden extra goed." #~ msgid "Dembrane Reply" -#~ msgstr "Dembrane Reactie" +#~ msgstr "Reactie" #~ msgid "Description" #~ msgstr "Beschrijving" @@ -1568,16 +1568,16 @@ msgid "Enable 2FA" msgstr "2FA inschakelen" #~ msgid "Enable Dembrane Echo" -#~ msgstr "Dembrane Echo inschakelen" +#~ msgstr "Echo inschakelen" #~ msgid "Enable Dembrane ECHO" -#~ msgstr "Dembrane ECHO inschakelen" +#~ msgstr "ECHO inschakelen" #~ msgid "Enable Dembrane Reply" -#~ msgstr "Dembrane Reactie inschakelen" +#~ msgstr "Reactie inschakelen" #~ msgid "Enable Dembrane Verify" -#~ msgstr "Dembrane Verify inschakelen" +#~ msgstr "Verify inschakelen" #: src/components/project/ProjectPortalEditor.tsx:662 msgid "Enable Explore" @@ -2085,12 +2085,12 @@ msgstr "Duits" #: src/components/participant/ParticipantConversationAudio.tsx:414 msgid "Get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Krijg direct een reactie van Dembrane om het gesprek te verdiepen." +msgstr "Krijg direct een reactie van dembrane om het gesprek te verdiepen." #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:129 msgid "participant.refine.go.deeper.description" -msgstr "Krijg direct een reactie van Dembrane om het gesprek te verdiepen." +msgstr "Krijg direct een reactie van dembrane om het gesprek te verdiepen." #: src/components/view/CreateViewForm.tsx:129 msgid "Give me a list of 5-10 topics that are being discussed." @@ -4196,7 +4196,7 @@ msgstr "Trefwoorden" #: src/components/participant/ParticipantConversationAudio.tsx:408 msgid "Take some time to create an outcome that makes your contribution concrete or get an immediate reply from Dembrane to help you deepen the conversation." -msgstr "Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van Dembrane om het gesprek te verdiepen." +msgstr "Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen." #: src/components/participant/ParticipantConversationAudio.tsx:411 msgid "Take some time to create an outcome that makes your contribution concrete." @@ -4757,7 +4757,7 @@ msgstr "Uploaden" #: src/components/settings/WhitelabelLogoCard.tsx:100 msgid "Upload a custom logo to replace the Dembrane logo across the portal, dashboard, reports, and host guide." -msgstr "Upload een custom logo om het Dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids." +msgstr "Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids." #~ msgid "Upload Audio" #~ msgstr "Audio uploaden" @@ -4826,7 +4826,7 @@ msgstr "Gebruik Shift + Enter om een nieuwe regel toe te voegen" #: src/components/settings/WhitelabelLogoCard.tsx:134 msgid "Using default Dembrane logo" -msgstr "Gebruik standaard Dembrane-logo" +msgstr "Gebruik standaard dembrane-logo" #: src/components/project/webhooks/WebhookSettingsCard.tsx:1046 msgid "Using webhooks? We'd love to hear from you" @@ -4866,7 +4866,7 @@ msgstr "geverifieerde artefacten" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:839 msgid "dashboard.dembrane.verify.title" -msgstr "dembrane Verifiëren" +msgstr "Verifiëren" #. js-lingui-explicit-id #: src/components/participant/refine/RefineSelection.tsx:73 @@ -4997,7 +4997,7 @@ msgstr "Welkom terug" #: src/routes/project/chat/ProjectChatRoute.tsx:536 msgid "Welcome to Dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations." -msgstr "Welkom bij Dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud." +msgstr "Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud." #: src/components/common/DembraneLoadingSpinner/index.tsx:23 msgid "Welcome to Dembrane!" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index dc222ece..f86d9c2d 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Dembrane Verify in te schakelen.\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Dembrane Echo\"],\"90wFaY\":[\"Dembrane ECHO\"],\"Y7Si8i\":[\"Dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Dembrane Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"ycR/52\":[\"Dembrane Echo inschakelen\"],\"mKGCnZ\":[\"Dembrane ECHO inschakelen\"],\"Dh2kHP\":[\"Dembrane Reactie inschakelen\"],\"d9rIJ1\":[\"Dembrane Verify inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van Dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het Dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard Dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"participant.echo.verify\":[\"Verifiëren\"],\"dashboard.dembrane.verify.title\":[\"dembrane Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij Dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij Dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Dembrane Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file From 4dac9b1867c4c1b85b2a7668049bb5aa1f7c3c76 Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 12:02:00 +0000 Subject: [PATCH 10/12] - more translation fixes --- .../participant/verify/VerifyInstructions.tsx | 16 +- .../participant/verify/VerifySelection.tsx | 6 +- .../project/ProjectPortalEditor.tsx | 24 +-- echo/frontend/src/locales/de-DE.po | 147 ++++++++++++---- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 166 ++++++++++-------- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 145 +++++++++++---- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 145 +++++++++++---- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 166 ++++++++++-------- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 147 ++++++++++++---- echo/frontend/src/locales/nl-NL.ts | 2 +- 15 files changed, 655 insertions(+), 319 deletions(-) diff --git a/echo/frontend/src/components/participant/verify/VerifyInstructions.tsx b/echo/frontend/src/components/participant/verify/VerifyInstructions.tsx index ab5e799d..96b80f53 100644 --- a/echo/frontend/src/components/participant/verify/VerifyInstructions.tsx +++ b/echo/frontend/src/components/participant/verify/VerifyInstructions.tsx @@ -15,15 +15,15 @@ const INSTRUCTIONS = [ { key: "receive-artefact", render: (objectLabel: string) => ( - - You'll soon get {objectLabel} to make them concrete. + + You'll soon get {objectLabel} to verify. ), }, { key: "read-aloud", render: (objectLabel: string) => ( - + Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything. @@ -32,7 +32,7 @@ const INSTRUCTIONS = [ { key: "revise-artefact", render: (objectLabel: string) => ( - + Once you have discussed, hit "revise" to see the {objectLabel} change to reflect your discussion. @@ -41,7 +41,7 @@ const INSTRUCTIONS = [ { key: "approve-artefact", render: (objectLabel: string) => ( - + If you are happy with the {objectLabel} click "Approve" to show you feel heard. @@ -50,7 +50,7 @@ const INSTRUCTIONS = [ { key: "approval-helps", render: (_objectLabel: string) => ( - + Your approval helps us understand what you really think! ), @@ -110,9 +110,9 @@ export const VerifyInstructions = ({ {...testId("portal-verify-instructions-next-button")} > {isLoading ? ( - Loading + Loading ) : ( - Next + Next )} diff --git a/echo/frontend/src/components/participant/verify/VerifySelection.tsx b/echo/frontend/src/components/participant/verify/VerifySelection.tsx index 305ef792..dff4a68c 100644 --- a/echo/frontend/src/components/participant/verify/VerifySelection.tsx +++ b/echo/frontend/src/components/participant/verify/VerifySelection.tsx @@ -198,8 +198,8 @@ export const VerifySelection = () => { {/* Main content */} - <Trans id="participant.concrete.selection.title"> - What do you want to make concrete? + <Trans id="participant.verify.selection.title"> + What do you want to verify? </Trans> @@ -254,7 +254,7 @@ export const VerifySelection = () => { {isLoading ? ( Loading… ) : ( - Next + Next )} diff --git a/echo/frontend/src/components/project/ProjectPortalEditor.tsx b/echo/frontend/src/components/project/ProjectPortalEditor.tsx index c2ab60dd..53545a64 100644 --- a/echo/frontend/src/components/project/ProjectPortalEditor.tsx +++ b/echo/frontend/src/components/project/ProjectPortalEditor.tsx @@ -842,20 +842,20 @@ const ProjectPortalEditorComponent: React.FC = ({ - + Beta - - Enable this feature to allow participants to create - and approve "concrete objects" from their submissions. - This helps crystallize key ideas, concerns, or - summaries. After the conversation, you can filter for - discussions with concrete objects and review them in - the overview. + + Enable this feature to allow participants to verify + and approve "outcomes" from their submissions. This + helps crystallize key ideas, concerns, or summaries. + After the conversation, you can filter for discussions + with verified outcomes and review them in the + overview. @@ -890,7 +890,7 @@ const ProjectPortalEditorComponent: React.FC = ({ render={({ field }) => ( = ({ } /> - + Select which topics participants can use for "Verify". {isVerificationTopicsLoading ? ( - Loading concrete topics… + Loading verify topics… ) : availableVerifyTopics.length === 0 ? ( - No concrete topics available. + No verify topics available. ) : ( diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index 4f412de4..bb199186 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -149,6 +149,61 @@ msgstr "Willkommen zurück" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "Gib dieses Artefakt frei, wenn es für dich passt." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Anweisungen werden geladen…" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Weiter" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Weiter" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Überarbeite den Text, bis er zu dir passt." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Lies den Text laut vor." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "Was möchtest du konkret machen?" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "Du bekommst gleich {objectLabel} zum Verifizieren." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -756,6 +811,11 @@ msgstr "Grundlegende Einstellungen" #~ msgid "Begin!" #~ msgstr "Beginnen!" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -768,7 +828,6 @@ msgstr "Beta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -963,8 +1022,8 @@ msgid "Complete" msgstr "Abgeschlossen" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Konkrete Themen" +#~ msgid "Concrete Topics" +#~ msgstr "Konkrete Themen" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1512,11 +1571,6 @@ msgstr "Teilnahme aktivieren" msgid "Enable Report Notifications" msgstr "Benachrichtigungen für Berichte aktivieren" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben." @@ -1538,6 +1592,11 @@ msgstr "Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "Aktivieren Sie diese Funktion, damit Teilnehmer \"Ergebnisse\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen." + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Transkript anonymisieren aktivieren" @@ -2118,8 +2177,8 @@ msgstr "Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in G #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" -msgstr "Gib dieses Artefakt frei, wenn es für dich passt." +msgid "participant.verify.instructions.approve.artefact" +msgstr "Wenn Sie mit {objectLabel} zufrieden sind, klicken Sie auf \"Genehmigen\", um zu zeigen, dass Sie sich gehört fühlen." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2308,8 +2367,8 @@ msgstr "Live Vorschau" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" -msgstr "Anweisungen werden geladen…" +msgid "participant.verify.instructions.loading" +msgstr "Wird geladen" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 msgid "Loading" @@ -2333,8 +2392,8 @@ msgid "Loading collections..." msgstr "Sammlungen werden geladen..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Konkrete Themen werden geladen…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Konkrete Themen werden geladen…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2348,6 +2407,10 @@ msgstr "Transkript wird geladen ..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "Verify Themen werden geladen…" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "wird geladen..." @@ -2489,24 +2552,24 @@ msgid "Newest First" msgstr "Neueste zuerst" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:430 -msgid "participant.button.next" +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:146 -msgid "participant.ready.to.begin.button.text" -msgstr "Bereit zum Beginn" +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +#: src/components/participant/ParticipantOnboardingCards.tsx:430 +msgid "participant.button.next" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" -msgstr "Weiter" +#: src/components/participant/ParticipantInitiateForm.tsx:146 +msgid "participant.ready.to.begin.button.text" +msgstr "Bereit zum Beginn" #~ msgid "Next" #~ msgstr "Weiter" @@ -2541,8 +2604,8 @@ msgid "No collections found" msgstr "Keine Sammlungen gefunden" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "Keine konkreten Themen verfügbar." +#~ msgid "No concrete topics available." +#~ msgstr "Keine konkreten Themen verfügbar." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2650,6 +2713,10 @@ msgstr "Für dieses Projekt sind keine Verifizierungsthemen konfiguriert." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "Keine Verify Themen verfügbar." + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "Keine Webhooks konfiguriert" @@ -2680,13 +2747,13 @@ msgstr "Älteste zuerst" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" -msgstr "Überarbeite den Text, bis er zu dir passt." +msgid "participant.verify.instructions.revise.artefact" +msgstr "Sobald Sie diskutiert haben, klicken Sie auf \"Überarbeiten\", um {objectLabel} entsprechend Ihrer Diskussion anzupassen." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" -msgstr "Lies den Text laut vor." +msgid "participant.verify.instructions.read.aloud" +msgstr "Sobald Sie {objectLabel} erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten." #. js-lingui-explicit-id #: src/components/conversation/ConversationAccordion.tsx:599 @@ -3661,8 +3728,8 @@ msgstr "Tutorial auswählen" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "Wählen Sie aus, welche Themen Teilnehmer für \"Verifizieren\" verwenden können." #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -4691,6 +4758,10 @@ msgstr "Verifizieren" msgid "Verify code" msgstr "Code verifizieren" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "Verify Themen" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -4850,8 +4921,8 @@ msgstr "Welche Daten werden gesendet?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "Was möchtest du konkret machen?" +msgid "participant.verify.selection.title" +msgstr "Was möchten Sie verifizieren?" #: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" @@ -4947,13 +5018,13 @@ msgstr "Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbin #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "Du bekommst gleich {objectLabel} zum Verifizieren." +msgid "participant.verify.instructions.receive.artefact" +msgstr "Sie erhalten bald {objectLabel} zur Verifizierung." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" -msgstr "Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!" +msgid "participant.verify.instructions.approval.helps" +msgstr "Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!" #~ msgid "Your conversation is currently being transcribed. Please check back in a few moments." #~ msgstr "Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut." diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index 0b356312..43b98a33 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.verify.instructions.approve.artefact\":[\"Wenn Sie mit \",[\"objectLabel\"],\" zufrieden sind, klicken Sie auf \\\"Genehmigen\\\", um zu zeigen, dass Sie sich gehört fühlen.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"w6Mgbs\":[\"Verify Themen\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index ad009b02..57d016cf 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -173,46 +173,16 @@ msgstr "Welcome back" #~ msgid "participant.verify.artefact.action.button.go.back" #~ msgstr "Go back" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 -#~ msgid "participant.verify.instructions.approve.artefact" -#~ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 #~ msgid "participant.verify.artefact.error.description" #~ msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 -#~ msgid "participant.verify.instructions.loading" -#~ msgstr "Loading" - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactLoading.tsx:13 #~ msgid "participant.verify.loading.artefact" #~ msgstr "Loading artefact" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:237 -#~ msgid "participant.verify.selection.button.next" -#~ msgstr "Next" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 -#~ msgid "participant.verify.instructions.button.next" -#~ msgstr "Next" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 -#~ msgid "participant.verify.instructions.revise.artefact" -#~ msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 -#~ msgid "participant.verify.instructions.read.aloud" -#~ msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefact.tsx:327 #~ msgid "participant.verify.regenerating.artefact" @@ -258,21 +228,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.artefact.error.title" #~ msgstr "Unable to Load Artefact" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:183 -#~ msgid "participant.verify.selection.title" -#~ msgstr "What do you want to verify?" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 -#~ msgid "participant.verify.instructions.receive.artefact" -#~ msgstr "You'll soon get {objectLabel} to verify." - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 -#~ msgid "participant.verify.instructions.approval.helps" -#~ msgstr "Your approval helps us understand what you really think!" - #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:744 #~ msgid "dashboard.dembrane.concrete.experimental" @@ -368,6 +323,61 @@ msgstr "Welcome back" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Loading" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Next" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Next" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Select which topics participants can use for verification." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "What do you want to make concrete?" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "You'll soon get {objectLabel} to make them concrete." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "Your approval helps us understand what you really think!" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -1015,6 +1025,11 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -1027,7 +1042,6 @@ msgstr "Beta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -1230,8 +1244,8 @@ msgid "Complete" msgstr "Complete" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Concrete Topics" +#~ msgid "Concrete Topics" +#~ msgstr "Concrete Topics" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1795,11 +1809,6 @@ msgstr "Enable participation" msgid "Enable Report Notifications" msgstr "Enable Report Notifications" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." @@ -1824,6 +1833,11 @@ msgstr "Enable this feature to allow participants to request AI-powered response #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "Enable this feature to allow participants to verify and approve \"outcomes\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview." + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Enable transcript anonymization" @@ -2451,7 +2465,7 @@ msgstr "Identify recurring themes, topics, and arguments that appear consistentl #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" +msgid "participant.verify.instructions.approve.artefact" msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 @@ -2643,7 +2657,7 @@ msgstr "Live Preview" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" +msgid "participant.verify.instructions.loading" msgstr "Loading" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 @@ -2668,8 +2682,8 @@ msgid "Loading collections..." msgstr "Loading collections..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Loading concrete topics…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Loading concrete topics…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2684,6 +2698,10 @@ msgstr "Loading transcript..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "Loading verify topics…" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "loading..." @@ -2838,12 +2856,12 @@ msgstr "Next" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +msgid "participant.verify.selection.button.next" msgstr "Next" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" +msgid "participant.verify.instructions.button.next" msgstr "Next" #: src/components/participant/ParticipantOnboardingCards.tsx:285 @@ -2881,8 +2899,8 @@ msgid "No collections found" msgstr "No collections found" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "No concrete topics available." +#~ msgid "No concrete topics available." +#~ msgstr "No concrete topics available." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2999,6 +3017,10 @@ msgstr "No verification topics are configured for this project." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "No verify topics available." + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "No webhooks configured" @@ -3030,12 +3052,12 @@ msgstr "Oldest First" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" +msgid "participant.verify.instructions.revise.artefact" msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" +msgid "participant.verify.instructions.read.aloud" msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." #. js-lingui-explicit-id @@ -3957,8 +3979,8 @@ msgstr "Select tutorial" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Select which topics participants can use for verification." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "Select which topics participants can use for \"Verify\"." #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -5055,6 +5077,10 @@ msgstr "Verify" msgid "Verify code" msgstr "Verify code" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "Verify Topics" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -5227,8 +5253,8 @@ msgstr "What data is sent?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "What do you want to make concrete?" +msgid "participant.verify.selection.title" +msgstr "What do you want to verify?" #: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" @@ -5333,12 +5359,12 @@ msgstr "You seem to be offline, please check your internet connection" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "You'll soon get {objectLabel} to make them concrete." +msgid "participant.verify.instructions.receive.artefact" +msgstr "You'll soon get {objectLabel} to verify." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" +msgid "participant.verify.instructions.approval.helps" msgstr "Your approval helps us understand what you really think!" #: src/routes/project/conversation/ProjectConversationTranscript.tsx:735 diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index c3b34f79..90dca8b2 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index 8ef06559..8d3f5628 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -149,6 +149,61 @@ msgstr "Bienvenido de nuevo" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "Si estás satisfecho con el {objectLabel}, haz clic en \"Aprobar\" para mostrar que te sientes escuchado." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Cargando" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Siguiente" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Siguiente" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Una vez que hayas discutido, presiona \"revisar\" para ver cómo el {objectLabel} cambia para reflejar tu discusión." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Una vez que recibas el {objectLabel}, léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Seleccione qué temas pueden usar los participantes para la verificación." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "¿Qué quieres verificar?" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "Pronto recibirás {objectLabel} para verificar." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "¡Tu aprobación nos ayuda a entender lo que realmente piensas!" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -759,6 +814,11 @@ msgstr "Configuración Básica" #~ msgid "Begin!" #~ msgstr "¡Comenzar!" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -771,7 +831,6 @@ msgstr "Beta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -966,8 +1025,8 @@ msgid "Complete" msgstr "Completar" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Temas concretos" +#~ msgid "Concrete Topics" +#~ msgstr "Temas concretos" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1515,11 +1574,6 @@ msgstr "Habilitar participación" msgid "Enable Report Notifications" msgstr "Habilitar Notificaciones de Reportes" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados." @@ -1541,6 +1595,11 @@ msgstr "Habilita esta función para permitir a los participantes solicitar respu #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \"Profundizar\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "Active esta función para permitir que los participantes verifiquen y aprueben \"resultados\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general." + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Habilitar anonimización de transcripciones" @@ -2121,8 +2180,8 @@ msgstr "Identifica temas recurrentes, temas y argumentos que aparecen consistent #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" -msgstr "Si estás satisfecho con el {objectLabel}, haz clic en \"Aprobar\" para mostrar que te sientes escuchado." +msgid "participant.verify.instructions.approve.artefact" +msgstr "Si está satisfecho con {objectLabel}, haga clic en \"Aprobar\" para mostrar que se siente escuchado." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2311,7 +2370,7 @@ msgstr "Vista Previa en Vivo" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" +msgid "participant.verify.instructions.loading" msgstr "Cargando" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 @@ -2336,8 +2395,8 @@ msgid "Loading collections..." msgstr "Cargando colecciones..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Cargando temas concretos…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Cargando temas concretos…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2351,6 +2410,10 @@ msgstr "Cargando transcripción..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "Cargando temas de verificación…" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "cargando..." @@ -2492,24 +2555,24 @@ msgid "Newest First" msgstr "Más nuevos primero" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:430 -msgid "participant.button.next" +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:146 -msgid "participant.ready.to.begin.button.text" -msgstr "¿Listo para comenzar?" +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +#: src/components/participant/ParticipantOnboardingCards.tsx:430 +msgid "participant.button.next" msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" -msgstr "Siguiente" +#: src/components/participant/ParticipantInitiateForm.tsx:146 +msgid "participant.ready.to.begin.button.text" +msgstr "¿Listo para comenzar?" #~ msgid "Next" #~ msgstr "Siguiente" @@ -2544,8 +2607,8 @@ msgid "No collections found" msgstr "No se encontraron colecciones" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "No hay temas concretos disponibles." +#~ msgid "No concrete topics available." +#~ msgstr "No hay temas concretos disponibles." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2653,6 +2716,10 @@ msgstr "No hay temas de verificación configurados para este proyecto." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "No hay temas de verificación disponibles." + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "No hay webhooks configurados" @@ -2683,13 +2750,13 @@ msgstr "Más antiguos primero" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" -msgstr "Una vez que hayas discutido, presiona \"revisar\" para ver cómo el {objectLabel} cambia para reflejar tu discusión." +msgid "participant.verify.instructions.revise.artefact" +msgstr "Una vez que haya discutido, presione \"revisar\" para que {objectLabel} cambie y refleje su discusión." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" -msgstr "Una vez que recibas el {objectLabel}, léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario." +msgid "participant.verify.instructions.read.aloud" +msgstr "Una vez que reciba {objectLabel}, léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario." #. js-lingui-explicit-id #: src/components/conversation/ConversationAccordion.tsx:599 @@ -3667,8 +3734,8 @@ msgstr "Seleccionar tutorial" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Seleccione qué temas pueden usar los participantes para la verificación." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "Seleccione qué temas pueden usar los participantes para \"Verificar\"." #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -4695,6 +4762,10 @@ msgstr "Verificar" msgid "Verify code" msgstr "Verificar código" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "Temas de verificación" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -4854,8 +4925,8 @@ msgstr "¿Qué datos se envían?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "¿Qué quieres verificar?" +msgid "participant.verify.selection.title" +msgstr "¿Qué desea verificar?" #: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" @@ -4951,13 +5022,13 @@ msgstr "Pareces estar desconectado, por favor verifica tu conexión a internet" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "Pronto recibirás {objectLabel} para verificar." +msgid "participant.verify.instructions.receive.artefact" +msgstr "Pronto recibirá {objectLabel} para verificar." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" -msgstr "¡Tu aprobación nos ayuda a entender lo que realmente piensas!" +msgid "participant.verify.instructions.approval.helps" +msgstr "¡Su aprobación nos ayuda a comprender lo que realmente piensa!" #~ msgid "Your conversation is currently being transcribed. Please check back in a few moments." #~ msgstr "Tu conversación está siendo transcribida. Por favor, revisa más tarde." diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index abd840ac..27170308 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"w6Mgbs\":[\"Temas de verificación\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 20a5266e..47a20987 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -164,6 +164,61 @@ msgstr "Bon retour" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \"objets concrets\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "Valide cet artefact si tout est bon pour toi." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Chargement" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Suivant" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Suivant" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Une fois que tu as discuté, clique sur « réviser » pour voir {objectLabel} changer pour refléter ta discussion." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Une fois que tu as reçu {objectLabel}, lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour la vérification." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "Qu'est-ce que tu veux rendre concret ?" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "Tu recevras bientôt {objectLabel} pour les rendre concrets." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "Ton approbation nous aide à comprendre ce que tu penses vraiment !" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -774,6 +829,11 @@ msgstr "Paramètres de base" #~ msgid "Begin!" #~ msgstr "Commencer !" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Bêta" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -786,7 +846,6 @@ msgstr "Bêta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Bêta" @@ -981,8 +1040,8 @@ msgid "Complete" msgstr "Terminé" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Sujets concrets" +#~ msgid "Concrete Topics" +#~ msgstr "Sujets concrets" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1530,11 +1589,6 @@ msgstr "Activer la participation" msgid "Enable Report Notifications" msgstr "Activer les notifications de rapports" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \"objets concrets\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés." @@ -1556,6 +1610,11 @@ msgstr "Activez cette fonctionnalité pour permettre aux participants de demande #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \"résultats\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu." + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Activer l'anonymisation des transcriptions" @@ -2136,8 +2195,8 @@ msgstr "Identifiez les thèmes, sujets et arguments récurrents qui apparaissent #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" -msgstr "Valide cet artefact si tout est bon pour toi." +msgid "participant.verify.instructions.approve.artefact" +msgstr "Si vous êtes satisfait de {objectLabel}, cliquez sur \"Approuver\" pour montrer que vous vous sentez entendu." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2326,7 +2385,7 @@ msgstr "Vue en direct" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" +msgid "participant.verify.instructions.loading" msgstr "Chargement" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 @@ -2351,8 +2410,8 @@ msgid "Loading collections..." msgstr "Chargement des collections..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Chargement des sujets concrets…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Chargement des sujets concrets…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2366,6 +2425,10 @@ msgstr "Chargement de la transcription..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "Chargement des sujets de vérification…" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "chargement..." @@ -2507,24 +2570,24 @@ msgid "Newest First" msgstr "Plus récent en premier" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:430 -msgid "participant.button.next" +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:146 -msgid "participant.ready.to.begin.button.text" -msgstr "Prêt à commencer" +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +#: src/components/participant/ParticipantOnboardingCards.tsx:430 +msgid "participant.button.next" msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" -msgstr "Suivant" +#: src/components/participant/ParticipantInitiateForm.tsx:146 +msgid "participant.ready.to.begin.button.text" +msgstr "Prêt à commencer" #~ msgid "Next" #~ msgstr "Suivant" @@ -2559,8 +2622,8 @@ msgid "No collections found" msgstr "Aucune collection trouvée" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "Aucun sujet concret disponible." +#~ msgid "No concrete topics available." +#~ msgstr "Aucun sujet concret disponible." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2668,6 +2731,10 @@ msgstr "Aucun sujet de vérification n'est configuré pour ce projet." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "Aucun sujet de vérification disponible." + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "Aucun webhook configuré" @@ -2698,13 +2765,13 @@ msgstr "Plus ancien en premier" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" -msgstr "Une fois que tu as discuté, clique sur « réviser » pour voir {objectLabel} changer pour refléter ta discussion." +msgid "participant.verify.instructions.revise.artefact" +msgstr "Une fois que vous avez discuté, appuyez sur \"réviser\" pour que {objectLabel} change afin de refléter votre discussion." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" -msgstr "Une fois que tu as reçu {objectLabel}, lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin." +msgid "participant.verify.instructions.read.aloud" +msgstr "Une fois que vous recevez {objectLabel}, lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant." #. js-lingui-explicit-id #: src/components/conversation/ConversationAccordion.tsx:599 @@ -3682,8 +3749,8 @@ msgstr "Sélectionner le tutoriel" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour la vérification." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "Sélectionnez les sujets que les participants peuvent utiliser pour \"Vérifier\"." #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -4710,6 +4777,10 @@ msgstr "Vérifier" msgid "Verify code" msgstr "Vérifier le code" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "Sujets de vérification" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -4873,8 +4944,8 @@ msgstr "Quelles données sont envoyées ?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "Qu'est-ce que tu veux rendre concret ?" +msgid "participant.verify.selection.title" +msgstr "Que souhaitez-vous vérifier ?" #: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" @@ -4970,13 +5041,13 @@ msgstr "Vous semblez être hors ligne, veuillez vérifier votre connexion intern #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "Tu recevras bientôt {objectLabel} pour les rendre concrets." +msgid "participant.verify.instructions.receive.artefact" +msgstr "Vous recevrez bientôt {objectLabel} à vérifier." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" -msgstr "Ton approbation nous aide à comprendre ce que tu penses vraiment !" +msgid "participant.verify.instructions.approval.helps" +msgstr "Votre approbation nous aide à comprendre ce que vous pensez vraiment !" #~ msgid "Your conversation is currently being transcribed. Please check back in a few moments." #~ msgstr "Votre conversation est en cours de transcription. Veuillez vérifier plus tard." diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index a6ae8c0e..6e7a16f7 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index ad009b02..5ed832a3 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -173,46 +173,16 @@ msgstr "Welcome back" #~ msgid "participant.verify.artefact.action.button.go.back" #~ msgstr "Go back" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:43 -#~ msgid "participant.verify.instructions.approve.artefact" -#~ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactError.tsx:24 #~ msgid "participant.verify.artefact.error.description" #~ msgstr "It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic." -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:106 -#~ msgid "participant.verify.instructions.loading" -#~ msgstr "Loading" - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefactLoading.tsx:13 #~ msgid "participant.verify.loading.artefact" #~ msgstr "Loading artefact" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:237 -#~ msgid "participant.verify.selection.button.next" -#~ msgstr "Next" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:108 -#~ msgid "participant.verify.instructions.button.next" -#~ msgstr "Next" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:34 -#~ msgid "participant.verify.instructions.revise.artefact" -#~ msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:25 -#~ msgid "participant.verify.instructions.read.aloud" -#~ msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." - #. js-lingui-explicit-id #: src/components/participant/verify/VerifyArtefact.tsx:327 #~ msgid "participant.verify.regenerating.artefact" @@ -258,21 +228,6 @@ msgstr "Welcome back" #~ msgid "participant.verify.artefact.error.title" #~ msgstr "Unable to Load Artefact" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:183 -#~ msgid "participant.verify.selection.title" -#~ msgstr "What do you want to verify?" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:17 -#~ msgid "participant.verify.instructions.receive.artefact" -#~ msgstr "You'll soon get {objectLabel} to verify." - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:52 -#~ msgid "participant.verify.instructions.approval.helps" -#~ msgstr "Your approval helps us understand what you really think!" - #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:744 #~ msgid "dashboard.dembrane.concrete.experimental" @@ -368,6 +323,61 @@ msgstr "Welcome back" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Loading" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Next" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Next" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Select which topics participants can use for verification." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "What do you want to make concrete?" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "You'll soon get {objectLabel} to make them concrete." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "Your approval helps us understand what you really think!" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -1015,6 +1025,11 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -1027,7 +1042,6 @@ msgstr "Beta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" @@ -1230,8 +1244,8 @@ msgid "Complete" msgstr "Complete" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Concrete Topics" +#~ msgid "Concrete Topics" +#~ msgstr "Concrete Topics" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1795,11 +1809,6 @@ msgstr "Enable participation" msgid "Enable Report Notifications" msgstr "Enable Report Notifications" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Enable this feature to allow participants to create and approve \"concrete objects\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." @@ -1824,6 +1833,11 @@ msgstr "Enable this feature to allow participants to request AI-powered response #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Enable transcript anonymization" @@ -2451,7 +2465,7 @@ msgstr "Identify recurring themes, topics, and arguments that appear consistentl #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" +msgid "participant.verify.instructions.approve.artefact" msgstr "If you are happy with the {objectLabel} click \"Approve\" to show you feel heard." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 @@ -2643,7 +2657,7 @@ msgstr "Live Preview" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" +msgid "participant.verify.instructions.loading" msgstr "Loading" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 @@ -2668,8 +2682,8 @@ msgid "Loading collections..." msgstr "Loading collections..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Loading concrete topics…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Loading concrete topics…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2684,6 +2698,10 @@ msgstr "Loading transcript..." #~ msgid "Loading verification topics…" #~ msgstr "Loading verification topics…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "loading..." @@ -2838,12 +2856,12 @@ msgstr "Next" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +msgid "participant.verify.selection.button.next" msgstr "Next" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" +msgid "participant.verify.instructions.button.next" msgstr "Next" #: src/components/participant/ParticipantOnboardingCards.tsx:285 @@ -2881,8 +2899,8 @@ msgid "No collections found" msgstr "No collections found" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "No concrete topics available." +#~ msgid "No concrete topics available." +#~ msgstr "No concrete topics available." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2999,6 +3017,10 @@ msgstr "No verification topics are configured for this project." #~ msgid "No verification topics available." #~ msgstr "No verification topics available." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "" + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "No webhooks configured" @@ -3030,12 +3052,12 @@ msgstr "Oldest First" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" +msgid "participant.verify.instructions.revise.artefact" msgstr "Once you have discussed, hit \"revise\" to see the {objectLabel} change to reflect your discussion." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" +msgid "participant.verify.instructions.read.aloud" msgstr "Once you receive the {objectLabel}, read it aloud and share out loud what you want to change, if anything." #. js-lingui-explicit-id @@ -3957,8 +3979,8 @@ msgstr "Select tutorial" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Select which topics participants can use for verification." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -5055,6 +5077,10 @@ msgstr "Verify" msgid "Verify code" msgstr "Verify code" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -5227,8 +5253,8 @@ msgstr "What data is sent?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "What do you want to make concrete?" +msgid "participant.verify.selection.title" +msgstr "What do you want to verify?" #: src/components/chat/ChatModeSelector.tsx:49 msgid "What patterns emerge from the data?" @@ -5333,12 +5359,12 @@ msgstr "You seem to be offline, please check your internet connection" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "You'll soon get {objectLabel} to make them concrete." +msgid "participant.verify.instructions.receive.artefact" +msgstr "You'll soon get {objectLabel} to verify." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" +msgid "participant.verify.instructions.approval.helps" msgstr "Your approval helps us understand what you really think!" #: src/routes/project/conversation/ProjectConversationTranscript.tsx:735 diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index c3b34f79..90dca8b2 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index f53b6eae..15e2789d 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -149,6 +149,61 @@ msgstr "Welkom terug" #~ msgid "participant.modal.refine.info.reason" #~ msgstr "We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +#~ msgid "dashboard.dembrane.concrete.description" +#~ msgstr "Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:44 +#~ msgid "participant.concrete.instructions.approve.artefact" +#~ msgstr "Keur het artefact goed of pas het aan voordat je doorgaat." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:113 +#~ msgid "participant.concrete.instructions.loading" +#~ msgstr "Instructies aan het laden…" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +#~ msgid "participant.concrete.selection.button.next" +#~ msgstr "Volgende" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +#~ msgid "participant.concrete.instructions.button.next" +#~ msgstr "Aan de slag" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:35 +#~ msgid "participant.concrete.instructions.revise.artefact" +#~ msgstr "Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:26 +#~ msgid "participant.concrete.instructions.read.aloud" +#~ msgstr "Lees de tekst hardop voor en check of het goed voelt." + +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:902 +#~ msgid "dashboard.dembrane.verify.topic.select" +#~ msgstr "Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie." + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:201 +#~ msgid "participant.concrete.selection.title" +#~ msgstr "Kies een concreet voorbeeld" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:18 +#~ msgid "participant.concrete.instructions.receive.artefact" +#~ msgstr "Je krijgt zo een concreet voorbeeld (artefact) om mee te werken" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:53 +#~ msgid "participant.concrete.instructions.approval.helps" +#~ msgstr "Als je dit goedkeurt, helpt dat om het proces te verbeteren" + #. js-lingui-explicit-id #: src/routes/project/library/ProjectLibrary.tsx:237 msgid "library.generate.duration.message" @@ -813,6 +868,11 @@ msgstr "Basis instellingen" #~ msgid "Begin!" #~ msgstr "Begin!" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Bèta" + #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -825,7 +885,6 @@ msgstr "Bèta" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:638 -#: src/components/project/ProjectPortalEditor.tsx:845 msgid "dashboard.dembrane.concrete.beta" msgstr "Bèta" @@ -1020,8 +1079,8 @@ msgid "Complete" msgstr "Voltooid" #: src/components/project/ProjectPortalEditor.tsx:893 -msgid "Concrete Topics" -msgstr "Concreet maken" +#~ msgid "Concrete Topics" +#~ msgstr "Concreet maken" #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:438 @@ -1599,11 +1658,6 @@ msgstr "Deelnemen inschakelen" msgid "Enable Report Notifications" msgstr "Rapportmeldingen inschakelen" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:852 -msgid "dashboard.dembrane.concrete.description" -msgstr "Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet." - #: src/components/project/ProjectPortalEditor.tsx:916 #~ msgid "Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed." #~ msgstr "Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates." @@ -1625,6 +1679,11 @@ msgstr "Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tij #~ msgid "Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \"Go deeper\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests." #~ msgstr "Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \"Go deeper\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken." +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:852 +msgid "dashboard.dembrane.feature.verify.description" +msgstr "Schakel deze functie in om deelnemers \"resultaten\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht." + #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" msgstr "Transcriptanoniem maken inschakelen" @@ -2226,8 +2285,8 @@ msgstr "Identificeer herhalende thema's, onderwerpen en argumenten die consisten #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:44 -msgid "participant.concrete.instructions.approve.artefact" -msgstr "Keur het artefact goed of pas het aan voordat je doorgaat." +msgid "participant.verify.instructions.approve.artefact" +msgstr "Als je tevreden bent met {objectLabel}, klik dan op \"Goedkeuren\" om te laten zien dat je je gehoord voelt." #: src/components/project/webhooks/WebhookSettingsCard.tsx:823 #~ msgid "If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking." @@ -2428,8 +2487,8 @@ msgstr "Live Voorbeeld" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:113 -msgid "participant.concrete.instructions.loading" -msgstr "Instructies aan het laden…" +msgid "participant.verify.instructions.loading" +msgstr "Bezig met laden" #: src/components/common/DembraneLoadingSpinner/index.tsx:24 msgid "Loading" @@ -2453,8 +2512,8 @@ msgid "Loading collections..." msgstr "Collecties worden geladen..." #: src/components/project/ProjectPortalEditor.tsx:909 -msgid "Loading concrete topics…" -msgstr "Concrete onderwerpen aan het laden…" +#~ msgid "Loading concrete topics…" +#~ msgstr "Concrete onderwerpen aan het laden…" #: src/components/participant/MicrophoneTest.tsx:314 msgid "Loading microphones..." @@ -2468,6 +2527,10 @@ msgstr "Transcript aan het laden..." #~ msgid "Loading verification topics…" #~ msgstr "Verificatie-onderwerpen worden geladen…" +#: src/components/project/ProjectPortalEditor.tsx:909 +msgid "Loading verify topics…" +msgstr "Verify onderwerpen aan het laden…" + #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." msgstr "bezig met laden..." @@ -2609,24 +2672,24 @@ msgid "Newest First" msgstr "Nieuwste eerst" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:430 -msgid "participant.button.next" +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:146 -msgid "participant.ready.to.begin.button.text" -msgstr "Klaar om te beginnen" +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.concrete.selection.button.next" +#: src/components/participant/ParticipantOnboardingCards.tsx:430 +msgid "participant.button.next" msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.concrete.instructions.button.next" -msgstr "Aan de slag" +#: src/components/participant/ParticipantInitiateForm.tsx:146 +msgid "participant.ready.to.begin.button.text" +msgstr "Klaar om te beginnen" #~ msgid "Next" #~ msgstr "Volgende" @@ -2661,8 +2724,8 @@ msgid "No collections found" msgstr "Geen collecties gevonden" #: src/components/project/ProjectPortalEditor.tsx:913 -msgid "No concrete topics available." -msgstr "Geen concrete onderwerpen beschikbaar." +#~ msgid "No concrete topics available." +#~ msgstr "Geen concrete onderwerpen beschikbaar." #: src/components/conversation/SelectAllConfirmationModal.tsx:127 msgid "No content" @@ -2776,6 +2839,10 @@ msgstr "Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd." #~ msgid "No verification topics available." #~ msgstr "Geen verificatie-onderwerpen beschikbaar." +#: src/components/project/ProjectPortalEditor.tsx:913 +msgid "No verify topics available." +msgstr "Geen verify topics beschikbaar." + #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" msgstr "Geen webhooks geconfigureerd" @@ -2806,13 +2873,13 @@ msgstr "Oudste eerst" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:35 -msgid "participant.concrete.instructions.revise.artefact" -msgstr "Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen." +msgid "participant.verify.instructions.revise.artefact" +msgstr "Heb je het besproken? Klik op \"Herzien\" om {objectLabel} aan te passen aan jullie gesprek." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:26 -msgid "participant.concrete.instructions.read.aloud" -msgstr "Lees de tekst hardop voor en check of het goed voelt." +msgid "participant.verify.instructions.read.aloud" +msgstr "Lees {objectLabel} hardop voor en vertel wat je eventueel wilt aanpassen." #. js-lingui-explicit-id #: src/components/conversation/ConversationAccordion.tsx:599 @@ -3820,8 +3887,8 @@ msgstr "Selecteer tutorial" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 -msgid "dashboard.dembrane.verify.topic.select" -msgstr "Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie." +msgid "dashboard.dembrane.feature.verify.topic.select" +msgstr "Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \"Verifiëren\"." #~ msgid "Select your group" #~ msgstr "Selecteer je groep" @@ -4877,6 +4944,10 @@ msgstr "Verifiëren" msgid "Verify code" msgstr "Code verifiëren" +#: src/components/project/ProjectPortalEditor.tsx:893 +msgid "Verify Topics" +msgstr "Verifiëren Themen" + #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 #: src/components/view/View.tsx:62 @@ -5036,8 +5107,8 @@ msgstr "Wat gegevens worden verzonden?" #. js-lingui-explicit-id #: src/components/participant/verify/VerifySelection.tsx:201 -msgid "participant.concrete.selection.title" -msgstr "Kies een concreet voorbeeld" +msgid "participant.verify.selection.title" +msgstr "Wat wil je verifiëren?" #~ msgid "What kind of question do you want to ask for this document?" #~ msgstr "Wat voor soort vraag wil je stellen voor dit document?" @@ -5148,13 +5219,13 @@ msgstr "Je lijkt offline te zijn, controleer je internetverbinding" #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:18 -msgid "participant.concrete.instructions.receive.artefact" -msgstr "Je krijgt zo een concreet voorbeeld (artefact) om mee te werken" +msgid "participant.verify.instructions.receive.artefact" +msgstr "Je ontvangt zo meteen {objectLabel} om te verifiëren." #. js-lingui-explicit-id #: src/components/participant/verify/VerifyInstructions.tsx:53 -msgid "participant.concrete.instructions.approval.helps" -msgstr "Als je dit goedkeurt, helpt dat om het proces te verbeteren" +msgid "participant.verify.instructions.approval.helps" +msgstr "Jouw goedkeuring helpt ons begrijpen wat je echt denkt!" #~ msgid "Your conversation is currently being transcribed. Please check back in a few moments." #~ msgstr "Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw." diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index f86d9c2d..a3c52659 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"w6Mgbs\":[\"Verifiëren Themen\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file From 7d63db2e02b7f7753c6b2f983d07134325092c61 Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 12:03:30 +0000 Subject: [PATCH 11/12] - translations again --- echo/frontend/src/locales/de-DE.po | 30 +++++++++++++++--------------- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 10 +++++----- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 30 +++++++++++++++--------------- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 30 +++++++++++++++--------------- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 20 ++++++++++---------- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 30 +++++++++++++++--------------- echo/frontend/src/locales/nl-NL.ts | 2 +- 12 files changed, 81 insertions(+), 81 deletions(-) diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index bb199186..3d01a36c 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -811,11 +811,6 @@ msgstr "Grundlegende Einstellungen" #~ msgid "Begin!" #~ msgstr "Beginnen!" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "Beta" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -831,6 +826,11 @@ msgstr "Beta" msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #~ msgid "Big Picture" #~ msgstr "Big Picture" @@ -2551,16 +2551,6 @@ msgstr "Neues Projekt" msgid "Newest First" msgstr "Neueste zuerst" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.verify.selection.button.next" -msgstr "Weiter" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.verify.instructions.button.next" -msgstr "Weiter" - #. js-lingui-explicit-id #: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" @@ -2571,6 +2561,16 @@ msgstr "Weiter" msgid "participant.ready.to.begin.button.text" msgstr "Bereit zum Beginn" +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" +msgstr "Weiter" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Weiter" + #~ msgid "Next" #~ msgstr "Weiter" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index 43b98a33..a3b0dc1e 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.verify.instructions.approve.artefact\":[\"Wenn Sie mit \",[\"objectLabel\"],\" zufrieden sind, klicken Sie auf \\\"Genehmigen\\\", um zu zeigen, dass Sie sich gehört fühlen.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"w6Mgbs\":[\"Verify Themen\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.verify.instructions.approve.artefact\":[\"Wenn Sie mit \",[\"objectLabel\"],\" zufrieden sind, klicken Sie auf \\\"Genehmigen\\\", um zu zeigen, dass Sie sich gehört fühlen.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"w6Mgbs\":[\"Verify Themen\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 57d016cf..551b5994 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -1025,11 +1025,6 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "Beta" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -1045,6 +1040,11 @@ msgstr "Beta" msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #: src/components/chat/ChatModeSelector.tsx:242 #: src/components/chat/ChatModeBanner.tsx:39 #~ msgid "Big Picture" diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 90dca8b2..76aee704 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index 8d3f5628..4d5b77d4 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -814,11 +814,6 @@ msgstr "Configuración Básica" #~ msgid "Begin!" #~ msgstr "¡Comenzar!" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "Beta" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -834,6 +829,11 @@ msgstr "Beta" msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #~ msgid "Big Picture" #~ msgstr "Visión general" @@ -2554,16 +2554,6 @@ msgstr "Nuevo Proyecto" msgid "Newest First" msgstr "Más nuevos primero" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.verify.selection.button.next" -msgstr "Siguiente" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.verify.instructions.button.next" -msgstr "Siguiente" - #. js-lingui-explicit-id #: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" @@ -2574,6 +2564,16 @@ msgstr "Siguiente" msgid "participant.ready.to.begin.button.text" msgstr "¿Listo para comenzar?" +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" +msgstr "Siguiente" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Siguiente" + #~ msgid "Next" #~ msgstr "Siguiente" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index 27170308..5dbc88a3 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"w6Mgbs\":[\"Temas de verificación\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"w6Mgbs\":[\"Temas de verificación\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 47a20987..5e1d37ca 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -829,11 +829,6 @@ msgstr "Paramètres de base" #~ msgid "Begin!" #~ msgstr "Commencer !" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "Bêta" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -849,6 +844,11 @@ msgstr "Bêta" msgid "dashboard.dembrane.concrete.beta" msgstr "Bêta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Bêta" + #~ msgid "Big Picture" #~ msgstr "Vue d’ensemble" @@ -2569,16 +2569,6 @@ msgstr "Nouveau projet" msgid "Newest First" msgstr "Plus récent en premier" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.verify.selection.button.next" -msgstr "Suivant" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.verify.instructions.button.next" -msgstr "Suivant" - #. js-lingui-explicit-id #: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" @@ -2589,6 +2579,16 @@ msgstr "Suivant" msgid "participant.ready.to.begin.button.text" msgstr "Prêt à commencer" +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" +msgstr "Suivant" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Suivant" + #~ msgid "Next" #~ msgstr "Suivant" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 6e7a16f7..dd58dabe 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 5ed832a3..551b5994 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -1025,11 +1025,6 @@ msgstr "Basic Settings" #~ msgid "Begin!" #~ msgstr "Begin!" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -1045,6 +1040,11 @@ msgstr "Beta" msgid "dashboard.dembrane.concrete.beta" msgstr "Beta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Beta" + #: src/components/chat/ChatModeSelector.tsx:242 #: src/components/chat/ChatModeBanner.tsx:39 #~ msgid "Big Picture" @@ -1836,7 +1836,7 @@ msgstr "Enable this feature to allow participants to request AI-powered response #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:852 msgid "dashboard.dembrane.feature.verify.description" -msgstr "" +msgstr "Enable this feature to allow participants to verify and approve \"outcomes\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview." #: src/components/project/ProjectPortalEditor.tsx:1192 msgid "Enable transcript anonymization" @@ -2700,7 +2700,7 @@ msgstr "Loading transcript..." #: src/components/project/ProjectPortalEditor.tsx:909 msgid "Loading verify topics…" -msgstr "" +msgstr "Loading verify topics…" #: src/routes/project/report/ProjectReportRoute.tsx:334 msgid "loading..." @@ -3019,7 +3019,7 @@ msgstr "No verification topics are configured for this project." #: src/components/project/ProjectPortalEditor.tsx:913 msgid "No verify topics available." -msgstr "" +msgstr "No verify topics available." #: src/components/project/webhooks/WebhookSettingsCard.tsx:1016 msgid "No webhooks configured" @@ -3980,7 +3980,7 @@ msgstr "Select tutorial" #. js-lingui-explicit-id #: src/components/project/ProjectPortalEditor.tsx:902 msgid "dashboard.dembrane.feature.verify.topic.select" -msgstr "" +msgstr "Select which topics participants can use for \"Verify\"." #. js-lingui-explicit-id #: src/components/participant/MicrophoneTest.tsx:307 @@ -5079,7 +5079,7 @@ msgstr "Verify code" #: src/components/project/ProjectPortalEditor.tsx:893 msgid "Verify Topics" -msgstr "" +msgstr "Verify Topics" #: src/routes/project/library/ProjectLibraryView.tsx:36 #: src/routes/project/library/ProjectLibraryAspect.tsx:47 diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index 90dca8b2..76aee704 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index 15e2789d..cf0869dc 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -868,11 +868,6 @@ msgstr "Basis instellingen" #~ msgid "Begin!" #~ msgstr "Begin!" -#. js-lingui-explicit-id -#: src/components/project/ProjectPortalEditor.tsx:845 -msgid "dashboard.dembrane.verify.beta" -msgstr "Bèta" - #: src/routes/project/report/ProjectReportRoute.tsx:63 #: src/components/project/ProjectPortalEditor.tsx:1174 #: src/components/project/ProjectPortalEditor.tsx:1216 @@ -888,6 +883,11 @@ msgstr "Bèta" msgid "dashboard.dembrane.concrete.beta" msgstr "Bèta" +#. js-lingui-explicit-id +#: src/components/project/ProjectPortalEditor.tsx:845 +msgid "dashboard.dembrane.verify.beta" +msgstr "Bèta" + #~ msgid "Big Picture" #~ msgstr "Big Picture" @@ -2671,16 +2671,6 @@ msgstr "Nieuw project" msgid "Newest First" msgstr "Nieuwste eerst" -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifySelection.tsx:257 -msgid "participant.verify.selection.button.next" -msgstr "Volgende" - -#. js-lingui-explicit-id -#: src/components/participant/verify/VerifyInstructions.tsx:115 -msgid "participant.verify.instructions.button.next" -msgstr "Volgende" - #. js-lingui-explicit-id #: src/components/participant/ParticipantOnboardingCards.tsx:430 msgid "participant.button.next" @@ -2691,6 +2681,16 @@ msgstr "Volgende" msgid "participant.ready.to.begin.button.text" msgstr "Klaar om te beginnen" +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifySelection.tsx:257 +msgid "participant.verify.selection.button.next" +msgstr "Volgende" + +#. js-lingui-explicit-id +#: src/components/participant/verify/VerifyInstructions.tsx:115 +msgid "participant.verify.instructions.button.next" +msgstr "Volgende" + #~ msgid "Next" #~ msgstr "Volgende" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index a3c52659..77fe32a6 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"w6Mgbs\":[\"Verifiëren Themen\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"w6Mgbs\":[\"Verifiëren Themen\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file From 184b6130eb4fd44b4face2eb9c012f21875f7716 Mon Sep 17 00:00:00 2001 From: Usama Date: Tue, 10 Feb 2026 12:47:30 +0000 Subject: [PATCH 12/12] - in the host guide, make the header permanent and add an explicit "Go Fullscreen" button in the header to hide the header --- echo/frontend/src/locales/de-DE.po | 16 +++-- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 16 +++-- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 16 +++-- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 16 +++-- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 16 +++-- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 16 +++-- echo/frontend/src/locales/nl-NL.ts | 2 +- .../src/routes/project/HostGuidePage.tsx | 71 +++++++++++++------ 13 files changed, 114 insertions(+), 65 deletions(-) diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index 3d01a36c..1644c15e 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -967,7 +967,7 @@ msgstr "Wähl dein Theme für das Interface" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Klicken Sie auf \"Dateien hochladen\", wenn Sie bereit sind, den Upload-Prozess zu starten." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Klicken, um zu bearbeiten" @@ -1437,7 +1437,7 @@ msgstr "Transkript-Download-Optionen" msgid "Drag audio files here or click to select files" msgstr "Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Ziehen, um umzusortieren" @@ -1563,7 +1563,7 @@ msgstr "Explore aktivieren" #~ msgid "Enable Make it concrete" #~ msgstr "Konkret machen aktivieren" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Teilnahme aktivieren" @@ -2072,6 +2072,10 @@ msgstr "Zurück" #~ msgid "Go deeper" #~ msgstr "Tiefer eintauchen" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Vollbild" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Zur Startseite" @@ -3158,7 +3162,7 @@ msgstr "Ihre Erfahrung wird vorbereitet" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Vorschau: Der schnelle braune Fuchs springt über den faulen Hund." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "PDF drucken / speichern" @@ -3486,7 +3490,7 @@ msgstr "Mikrofonzugriff wird angefragt..." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Benötigt \"E-Mail anfordern?\" um aktiviert zu sein" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Zurücksetzen" @@ -3563,7 +3567,7 @@ msgstr "Überarbeiten" msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Rechtsklick, um hervorzuheben" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index a3b0dc1e..84b5549c 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.verify.instructions.approve.artefact\":[\"Wenn Sie mit \",[\"objectLabel\"],\" zufrieden sind, klicken Sie auf \\\"Genehmigen\\\", um zu zeigen, dass Sie sich gehört fühlen.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"w6Mgbs\":[\"Verify Themen\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspekte\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"L5gswt\":[\"Aktion von\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"bruUug\":[\"Fast geschafft\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse Sprache\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"announcements\":[\"Ankündigungen\"],\"Dzr23X\":[\"Ankündigungen\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"F+vBv0\":[\"Fragen\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kskjVK\":[\"Assistent schreibt...\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"participant.modal.interruption.issue.message\":[\"Achtung! Wir haben die letzten 60 Sekunden Ihrer Aufnahme aufgrund einer Unterbrechung verloren. Bitte drücken Sie die Schaltfläche unten, um die Verbindung wiederherzustellen.\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"IOBCIN\":[\"Audio-Tipp\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"GML8s7\":[\"Beginnen!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"dEgA5A\":[\"Abbrechen\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Abbrechen\"],\"participant.concrete.action.button.cancel\":[\"Abbrechen\"],\"participant.concrete.instructions.button.cancel\":[\"Abbrechen\"],\"select.all.modal.cancel\":[\"Abbrechen\"],\"add.tag.filter.modal.cancel\":[\"Abbrechen\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"0ngaDi\":[\"Quellen zitieren\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"q+hNag\":[\"Sammlung\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"6jBoE4\":[\"Konkrete Themen\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"WimHuY\":[\"Verbindung ungesund\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"participant.button.continue\":[\"Weiter\"],\"xGVfLh\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"he3ygx\":[\"Kopieren\"],\"y1eoq1\":[\"Link kopieren\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"CSQPC0\":[\"Konto erstellen\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"bsfMt3\":[\"Bericht erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"45O6zJ\":[\"Erstellt am\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"zdyslo\":[\"Webhook löschen\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"67znul\":[\"Antwort\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"Ih5qq/\":[\"E-Mail-Verifizierung | Dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimentell\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"kODvZJ\":[\"Vorname\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"cGeFup\":[\"Schriftgröße\"],\"Jj3pF8\":[\"Für erfahrene Benutzer: Ein Geheimnis-Schlüssel, um die Authentizität des Webhooks zu verifizieren. Nur erforderlich, wenn Ihr Empfangs-Dienst Signatur-Verifizierung benötigt.\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"ziAjHi\":[\"Generieren\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"DDcvSo\":[\"Deutsch\"],\"u9yLe/\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"participant.refine.go.deeper.description\":[\"Erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"5gqNQl\":[\"Rasteransicht\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"i0qMbr\":[\"Startseite\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"LSCWlh\":[\"Wie würden Sie einem Kollegen beschreiben, was Sie mit diesem Projekt erreichen möchten?\\n* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\\n* Wie sieht Erfolg aus\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"participant.verify.instructions.approve.artefact\":[\"Wenn Sie mit \",[\"objectLabel\"],\" zufrieden sind, klicken Sie auf \\\"Genehmigen\\\", um zu zeigen, dass Sie sich gehört fühlen.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"1xMiTU\":[\"IP-Adresse\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"Lj7sBL\":[\"Italienisch\"],\"clXffu\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"uocCon\":[\"Einen Moment bitte\"],\"OSBXx5\":[\"Gerade eben\"],\"0ohX1R\":[\"Halten Sie den Zugriff sicher mit einem Einmalcode aus Ihrer Authentifizierungs-App. Aktivieren oder deaktivieren Sie die Zwei-Faktor-Authentifizierung für dieses Konto.\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"n9yU9X\":[\"Live Vorschau\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"z0t9bb\":[\"Anmelden\"],\"zfB1KW\":[\"Anmelden | Dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"2cm4WM\":[\"Logo entfernt\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"jWXlkr\":[\"Längste zuerst\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"QWdKwH\":[\"Verschieben\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"Neu\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"7vhWI8\":[\"Neues Passwort\"],\"+VXUp8\":[\"Neues Projekt\"],\"+RfVvh\":[\"Neueste zuerst\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"cH5kXP\":[\"Jetzt\"],\"9+6THi\":[\"Älteste zuerst\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"conversation.ongoing\":[\"Laufend\"],\"J6n7sl\":[\"Laufend\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0zpgxV\":[\"Optionen\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"8ZsakT\":[\"Passwort\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"UbRKMZ\":[\"Ausstehend\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"uRFMMc\":[\"Portal Inhalt\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"Hie0VV\":[\"Projekt erstellt\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"xJMpjP\":[\"Projektbibliothek | Dembrane\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Projektübersicht | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"+0B+ue\":[\"Projekte\"],\"Eb7xM7\":[\"Projekte | Dembrane\"],\"JQVviE\":[\"Projekte Startseite\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"eWLklq\":[\"Zitate\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"wZxwNu\":[\"Vorlesen\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"844H5I\":[\"Bibliothek neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"wYz80B\":[\"Registrieren | Dembrane\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"7dZnmw\":[\"Relevanz\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"hTDMBB\":[\"Seite neu laden\"],\"t/YqKh\":[\"Entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"XyN13i\":[\"Antwort Prompt\"],\"gjpdaf\":[\"Bericht\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"library.request.access\":[\"Zugriff anfordern\"],\"uLZGK+\":[\"Zugriff anfordern\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"u2Hh+Y\":[\"Passwort zurücksetzen anfordern | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"UMMxwo\":[\"Passwort zurücksetzen | Dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"s+MGs7\":[\"Ressourcen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"Fortsetzen\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"tfDRzk\":[\"Speichern\"],\"IUwGEM\":[\"Änderungen speichern\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"XvjC4F\":[\"Speichern...\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"oOi11l\":[\"Nach unten scrollen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"A1taO8\":[\"Suchen\"],\"OWm+8o\":[\"Gespräche suchen\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"0sQPzI\":[\"Bis bald\"],\"1ZTiaz\":[\"Segmente\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"JlFcis\":[\"Senden\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"VTmyvi\":[\"Stimmung\"],\"NprC8U\":[\"Sitzungsname\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Teilen\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"6Uau97\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"u7yVRn\":[\"Quellen:\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"AS7WoE\":[\"Neu starten\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"pHVkqA\":[\"Aufnahme starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"kimwwT\":[\"Strategische Planung\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"zzDlyQ\":[\"Erfolg\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält, oder erhalte eine sofortige Antwort von dembrane, um das Gespräch zu vertiefen.\"],\"eyu39U\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"participant.refine.make.concrete.description\":[\"Nimm dir Zeit, ein konkretes Ergebnis zu erstellen, das deinen Beitrag festhält.\"],\"QCchuT\":[\"Template übernommen\"],\"iTylMl\":[\"Vorlagen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"FEr96N\":[\"Design\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"Ed99mE\":[\"Denke nach...\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"9ww6ML\":[\"Diese Seite wird angezeigt, nachdem der Teilnehmer das Gespräch beendet hat.\"],\"1gmHmj\":[\"Diese Seite wird den Teilnehmern angezeigt, wenn sie nach erfolgreichem Abschluss des Tutorials ein Gespräch beginnen.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"fp5rKh\":[\"Transcribieren...\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"qJb6G2\":[\"Erneut versuchen\"],\"eP1iDc\":[\"Frag mal\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"EkH9pt\":[\"Aktualisieren\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"ONWvwQ\":[\"Hochladen\"],\"UN8G93\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"8XD6tj\":[\"Audio hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"S2LyQ+\":[\"Standard-dembrane-Logo verwendet\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"w6Mgbs\":[\"Verify Themen\"],\"jpctdh\":[\"Ansicht\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Willst du ein Template zu „Dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"dni8nq\":[\"Wir werden Ihnen nur eine Nachricht senden, wenn Ihr Gastgeber einen Bericht erstellt. Wir geben Ihre Daten niemals an Dritte weiter. Sie können sich jederzeit abmelden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"fwEAk/\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"AKBU2w\":[\"Willkommen bei Dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Sie\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Echo aktivieren\"],\"mKGCnZ\":[\"ECHO aktivieren\"],\"Dh2kHP\":[\"Antwort aktivieren\"],\"d9rIJ1\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 551b5994..dff54b46 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -1188,7 +1188,7 @@ msgstr "Choose your preferred theme for the interface" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Click \"Upload Files\" when you're ready to start the upload process." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Click to edit" @@ -1666,7 +1666,7 @@ msgstr "Download Transcript Options" msgid "Drag audio files here or click to select files" msgstr "Drag audio files here or click to select files" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Drag to reorder" @@ -1797,7 +1797,7 @@ msgstr "Enable Explore" #~ msgid "Enable Make it concrete" #~ msgstr "Enable Make it concrete" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Enable participation" @@ -2345,6 +2345,10 @@ msgstr "Go back" #~ msgid "Go deeper" #~ msgstr "Go deeper" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Go Fullscreen" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Go home" @@ -3378,7 +3382,7 @@ msgstr "Preparing your experience" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Preview: The quick brown fox jumps over the lazy dog." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "Print / Save PDF" @@ -3731,7 +3735,7 @@ msgstr "Requesting microphone access to detect available devices..." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Requires \"Ask for Email?\" to be enabled" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Reset" @@ -3811,7 +3815,7 @@ msgstr "Revise" msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Right-click to highlight" diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 76aee704..301a7a53 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index 4d5b77d4..59f91d28 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -970,7 +970,7 @@ msgstr "Elige el tema que prefieras para la interfaz" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Haz clic en \"Subir archivos\" cuando estés listo para iniciar el proceso de subida." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Haz clic para editar" @@ -1440,7 +1440,7 @@ msgstr "Opciones de Descarga de Transcripción" msgid "Drag audio files here or click to select files" msgstr "Arrastra archivos de audio aquí o haz clic para seleccionar archivos" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" @@ -1566,7 +1566,7 @@ msgstr "Habilitar Explorar" #~ msgid "Enable Make it concrete" #~ msgstr "Activar Hacerlo concreto" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Habilitar participación" @@ -2075,6 +2075,10 @@ msgstr "Volver" #~ msgid "Go deeper" #~ msgstr "Profundizar" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Pantalla completa" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Ir al inicio" @@ -3164,7 +3168,7 @@ msgstr "Preparando tu experiencia" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Vista previa: El zorro rápido salta sobre el perro perezoso." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "Imprimir / Guardar PDF" @@ -3492,7 +3496,7 @@ msgstr "Por favor, espera mientras verificamos el acceso al micrófono." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Requiere que \"Solicitar correo electrónico?\" esté habilitado" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Restablecer" @@ -3569,7 +3573,7 @@ msgstr "revisar" msgid "Revision #{revisionNumber}" msgstr "Revisión #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Haga clic con el botón derecho para resaltar" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index 5dbc88a3..c9a0e5ea 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"w6Mgbs\":[\"Temas de verificación\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspectos\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"L5gswt\":[\"Acción de\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"bruUug\":[\"Casi listo\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"xNyrs1\":[\"Ya en el contexto\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"QX6zrA\":[\"Análisis\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"announcements\":[\"anuncios\"],\"Dzr23X\":[\"Anuncios\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"F+vBv0\":[\"Preguntar\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"participant.modal.interruption.issue.message\":[\"¡Atención! Perdimos los últimos 60 segundos de tu grabación debido a una interrupción. Por favor, presiona el botón de abajo para reconectar.\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"IOBCIN\":[\"Consejo de audio\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"/9nVLo\":[\"Volver a la selección\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"GML8s7\":[\"¡Comenzar!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"MkvsWx\":[\"Reservar una llamada\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"dEgA5A\":[\"Cancelar\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancelar\"],\"participant.concrete.action.button.cancel\":[\"cancelar\"],\"participant.concrete.instructions.button.cancel\":[\"cancelar\"],\"select.all.modal.cancel\":[\"Cancelar\"],\"add.tag.filter.modal.cancel\":[\"Cancelar\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"q+hNag\":[\"Colección\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"bD8I7O\":[\"Completar\"],\"6jBoE4\":[\"Temas concretos\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"puQ8+/\":[\"Publicar\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"WimHuY\":[\"Conexión no saludable\"],\"DFFB2t\":[\"Contactar a ventas\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"participant.button.continue\":[\"Continuar\"],\"xGVfLh\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"he3ygx\":[\"Copiar\"],\"y1eoq1\":[\"Copiar enlace\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"bsfMt3\":[\"Crear informe\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"45O6zJ\":[\"Creado el\"],\"yOrQ4N\":[\"Logo actual\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"zdyslo\":[\"Eliminar Webhook\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"67znul\":[\"Respuesta\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"Ih5qq/\":[\"Verificación de Correo Electrónico | Dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"RW4V7P\":[\"Error al subir el logo\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"kODvZJ\":[\"Nombre\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"cGeFup\":[\"Tamaño de fuente\"],\"Jj3pF8\":[\"Para usuarios avanzados: Una clave secreta para verificar la autenticidad del webhook. Solo necesario si tu servicio de recepción requiere verificación de firma.\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"nLC6tu\":[\"Francés\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"ziAjHi\":[\"Generar\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"DDcvSo\":[\"Alemán\"],\"u9yLe/\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"participant.refine.go.deeper.description\":[\"Obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"i0qMbr\":[\"Inicio\"],\"lgXx7l\":[\"Cómo funciona:\"],\"LSCWlh\":[\"¿Cómo le describirías a un colega lo que estás tratando de lograr con este proyecto?\\n* ¿Cuál es el objetivo principal o métrica clave?\\n* ¿Cómo se ve el éxito?\"],\"participant.button.i.understand\":[\"Entiendo\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"CE+M2e\":[\"Información\"],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"1xMiTU\":[\"Dirección IP\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"Lj7sBL\":[\"Italiano\"],\"clXffu\":[\"Únete a \",[\"0\"],\" en Dembrane\"],\"uocCon\":[\"Un momento\"],\"OSBXx5\":[\"Justo ahora\"],\"0ohX1R\":[\"Mantén el acceso seguro con un código de un solo uso de tu aplicación de autenticación. Activa o desactiva la autenticación de dos factores para esta cuenta.\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"PIhnIP\":[\"Háganos saber!\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"yzF66j\":[\"Enlace\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"dF6vP6\":[\"Vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zfB1KW\":[\"Iniciar sesión | Dembrane\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"2cm4WM\":[\"Logo eliminado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"nOhz3x\":[\"Cerrar sesión\"],\"jWXlkr\":[\"Más largo primero\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"+s1J8k\":[\"Marcar como leído\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modo\"],\"zMx0gF\":[\"Más templates\"],\"QWdKwH\":[\"Mover\"],\"CyKTz9\":[\"Mover Conversación\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"c5Xt89\":[\"Nombre Z-A\"],\"isRobC\":[\"Nuevo\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"+RfVvh\":[\"Más nuevos primero\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No se encontraron acciones\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"cH5kXP\":[\"Ahora\"],\"9+6THi\":[\"Más antiguos primero\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"conversation.ongoing\":[\"En curso\"],\"J6n7sl\":[\"En curso\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"NRLF9V\":[\"Abrir Documentación\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"JoAjm8\":[\"Abrir guía del host\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"Abrir guía de solución de problemas\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"LLAa/9\":[\"Opcional\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0zpgxV\":[\"Opciones\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"8ZsakT\":[\"Contraseña\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"IgrLD/\":[\"Pausar\"],\"PTSHeg\":[\"Pausar lectura\"],\"UbRKMZ\":[\"Pendiente\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"uRFMMc\":[\"Contenido del Portal\"],\"qVypVJ\":[\"Editor del Portal\"],\"g2UNkE\":[\"Propulsado por\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"ANWB5x\":[\"Imprimir este informe\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"Hie0VV\":[\"Proyecto creado\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"xJMpjP\":[\"Biblioteca del Proyecto | Dembrane\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Vista General del Proyecto | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"+0B+ue\":[\"Proyectos\"],\"Eb7xM7\":[\"Proyectos | Dembrane\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publicar\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"eWLklq\":[\"Citas\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"wZxwNu\":[\"Leer en voz alta\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"wYz80B\":[\"Registrar | Dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"7dZnmw\":[\"Relevancia\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"hTDMBB\":[\"Recargar Página\"],\"t/YqKh\":[\"Eliminar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"gjpdaf\":[\"Informe\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"library.request.access\":[\"Solicitar Acceso\"],\"uLZGK+\":[\"Solicitar Acceso\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"u2Hh+Y\":[\"Solicitar Restablecimiento de Contraseña | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"UMMxwo\":[\"Restablecer Contraseña | Dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"s+MGs7\":[\"Recursos\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"Reanudar\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"H1Pyjd\":[\"Reintentar subida\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"xxCtZv\":[\"Filas por página\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"tfDRzk\":[\"Guardar\"],\"IUwGEM\":[\"Guardar Cambios\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"XvjC4F\":[\"Guardando...\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"oOi11l\":[\"Desplazarse al final\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"A1taO8\":[\"Buscar\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"0sQPzI\":[\"Hasta pronto\"],\"1ZTiaz\":[\"Segmentos\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"JlFcis\":[\"Enviar\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"VTmyvi\":[\"Sentimiento\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"PErdpz\":[\"Configuración | Dembrane\"],\"Z8lGw6\":[\"Compartir\"],\"/XNQag\":[\"Compartir este informe\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"yrhNQG\":[\"Mostrar duración\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"6Uau97\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"u7yVRn\":[\"Fuentes:\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"uAQUqI\":[\"Estado\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"kimwwT\":[\"Planificación Estratégica\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"zzDlyQ\":[\"Éxito\"],\"bh1eKt\":[\"Sugerido:\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"OYHzN1\":[\"Etiquetas\"],\"nlxlmH\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta u obtén una respuesta inmediata de dembrane para ayudarte a profundizar en la conversación.\"],\"eyu39U\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"participant.refine.make.concrete.description\":[\"Tómate un tiempo para crear un resultado que haga tu contribución concreta.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"iTylMl\":[\"Plantillas\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"FEr96N\":[\"Tema\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"Ed99mE\":[\"Pensando...\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"9ww6ML\":[\"Esta página se muestra después de que el participante haya completado la conversación.\"],\"1gmHmj\":[\"Esta página se muestra a los participantes cuando inician una conversación después de completar correctamente el tutorial.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"MHrjPM\":[\"Título\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribiendo...\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"1MTTTw\":[\"Razón desconocida\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"jlrVDp\":[\"Conversación sin título\"],\"EkH9pt\":[\"Actualizar\"],\"3RboBp\":[\"Actualizar Informe\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"kwkhPe\":[\"Actualizar\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"ONWvwQ\":[\"Subir\"],\"UN8G93\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"8XD6tj\":[\"Subir Audio\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"S2LyQ+\":[\"Usando el logo de dembrane por defecto\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"w6Mgbs\":[\"Temas de verificación\"],\"jpctdh\":[\"Vista\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"D4e7re\":[\"Ver tus respuestas\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"¿Quieres añadir una plantilla a \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"SrJOPD\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"dni8nq\":[\"Solo te enviaremos un mensaje si tu host genera un informe, nunca compartimos tus detalles con nadie. Puedes optar por no recibir más mensajes en cualquier momento.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"fwEAk/\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"AKBU2w\":[\"¡Bienvenido a Dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"kWJmRL\":[\"Tú\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Habilitar Echo\"],\"mKGCnZ\":[\"Habilitar ECHO\"],\"Dh2kHP\":[\"Habilitar Respuesta\"],\"d9rIJ1\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 5e1d37ca..61463b99 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -985,7 +985,7 @@ msgstr "Choisis le thème que tu préfères pour l’interface" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Cliquez sur \"Télécharger les fichiers\" lorsque vous êtes prêt à commencer le processus de téléchargement." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Cliquer pour modifier" @@ -1455,7 +1455,7 @@ msgstr "Options de téléchargement de la transcription" msgid "Drag audio files here or click to select files" msgstr "Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Glisser pour réorganiser" @@ -1581,7 +1581,7 @@ msgstr "Activer Explorer" #~ msgid "Enable Make it concrete" #~ msgstr "Activer Rends-le concret" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Activer la participation" @@ -2090,6 +2090,10 @@ msgstr "Retour" #~ msgid "Go deeper" #~ msgstr "Va plus profond" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Plein écran" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Retour à l'accueil" @@ -3179,7 +3183,7 @@ msgstr "Préparation de votre expérience" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Aperçu : Le rapide brun fox saute sur le chien paresseux." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "Imprimer / Enregistrer PDF" @@ -3507,7 +3511,7 @@ msgstr "Accès au microphone en cours..." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Requiert \"Demander l'email ?\" pour être activé" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Réinitialiser" @@ -3584,7 +3588,7 @@ msgstr "Réviser" msgid "Revision #{revisionNumber}" msgstr "Révision #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Cliquez avec le bouton droit pour mettre en évidence" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index dd58dabe..3a1858f4 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"L5gswt\":[\"Action par\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"bruUug\":[\"Presque terminé\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Langue d'analyse\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"announcements\":[\"annonces\"],\"Dzr23X\":[\"Annonces\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Demander\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"L'assistant écrit...\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"participant.modal.interruption.issue.message\":[\"Attention ! Nous avons perdu les 60 dernières secondes de votre enregistrement en raison d'une interruption. Veuillez appuyer sur le bouton ci-dessous pour vous reconnecter.\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"IOBCIN\":[\"Conseil audio\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"/9nVLo\":[\"Retour à la sélection\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"GML8s7\":[\"Commencer !\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"dEgA5A\":[\"Annuler\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuler\"],\"participant.concrete.action.button.cancel\":[\"Annuler\"],\"participant.concrete.instructions.button.cancel\":[\"Annuler\"],\"select.all.modal.cancel\":[\"Annuler\"],\"add.tag.filter.modal.cancel\":[\"Annuler\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"TGJVgd\":[\"Discussion | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"8Q+lLG\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"bD8I7O\":[\"Terminé\"],\"6jBoE4\":[\"Sujets concrets\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"puQ8+/\":[\"Publier\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"WimHuY\":[\"Connexion défectueuse\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"participant.button.continue\":[\"Continuer\"],\"xGVfLh\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"y1eoq1\":[\"Copier le lien\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"CSQPC0\":[\"Créer un compte\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"bsfMt3\":[\"Créer un rapport\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"45O6zJ\":[\"Créé le\"],\"yOrQ4N\":[\"Logo actuel\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"++iDlT\":[\"Supprimer le projet\"],\"zdyslo\":[\"Supprimer le webhook\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"67znul\":[\"Réponse\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"Ih5qq/\":[\"Vérification de l'e-mail | Dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Expérimental\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"JmZ/+d\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"kODvZJ\":[\"Prénom\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"cGeFup\":[\"Taille de la police\"],\"Jj3pF8\":[\"Pour les utilisateurs avancés : Une clé secrète pour vérifier l'authenticité du webhook. Nécessaire si votre service de réception requiert une vérification de signature.\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"ziAjHi\":[\"Générer\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"DDcvSo\":[\"Allemand\"],\"u9yLe/\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"participant.refine.go.deeper.description\":[\"Obtenez une réponse immédiate de dembrane pour vous aider à approfondir la conversation.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"5gqNQl\":[\"Vue en grille\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"i0qMbr\":[\"Accueil\"],\"lgXx7l\":[\"Comment ça marche :\"],\"LSCWlh\":[\"Comment décririez-vous à un collègue ce que vous essayez d'accomplir avec ce projet ?\\n* Quel est l'objectif principal ou la métrique clé\\n* À quoi ressemble le succès\"],\"participant.button.i.understand\":[\"Je comprends\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"1xMiTU\":[\"Adresse IP\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"Lj7sBL\":[\"Italien\"],\"clXffu\":[\"Rejoindre \",[\"0\"],\" sur Dembrane\"],\"uocCon\":[\"Un instant\"],\"OSBXx5\":[\"Juste maintenant\"],\"0ohX1R\":[\"Sécurisez l'accès avec un code à usage unique de votre application d'authentification. Activez ou désactivez l'authentification à deux facteurs pour ce compte.\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"yzF66j\":[\"Lien\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"dF6vP6\":[\"Direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"n9yU9X\":[\"Vue en direct\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"z0t9bb\":[\"Connexion\"],\"zfB1KW\":[\"Connexion | Dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"2cm4WM\":[\"Logo supprimé\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"nOhz3x\":[\"Déconnexion\"],\"jWXlkr\":[\"Plus long en premier\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"+s1J8k\":[\"Marquer comme lue\"],\"VxyuRJ\":[\"Notes de réunion\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"Plus de templates\"],\"QWdKwH\":[\"Déplacer\"],\"CyKTz9\":[\"Déplacer\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"c5Xt89\":[\"Nom Z-A\"],\"isRobC\":[\"Nouveau\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"+VXUp8\":[\"Nouveau projet\"],\"+RfVvh\":[\"Plus récent en premier\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"riwuXX\":[\"Aucune action trouvée\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"meAa31\":[\"Aucune conversation\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"cH5kXP\":[\"Maintenant\"],\"9+6THi\":[\"Plus ancien en premier\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"conversation.ongoing\":[\"En cours\"],\"J6n7sl\":[\"En cours\"],\"uTmEDj\":[\"Conversations en cours\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"Ouvrir le guide de dépannage\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"LLAa/9\":[\"Optionnel\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"rMCv1T\":[\"Nom et email du participant\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"8ZsakT\":[\"Mot de passe\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"UbRKMZ\":[\"En attente\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"uRFMMc\":[\"Contenu du Portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"g2UNkE\":[\"Propulsé par\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"Hie0VV\":[\"Projet créé\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"xJMpjP\":[\"Bibliothèque de projet | Dembrane\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Aperçu du projet | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"+0B+ue\":[\"Projets\"],\"Eb7xM7\":[\"Projets | Dembrane\"],\"JQVviE\":[\"Accueil des projets\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publier\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"eWLklq\":[\"Citations\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"wZxwNu\":[\"Lire à haute voix\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"wYz80B\":[\"S'enregistrer | Dembrane\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"7dZnmw\":[\"Pertinence\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"hTDMBB\":[\"Recharger la page\"],\"t/YqKh\":[\"Supprimer\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"XyN13i\":[\"Prompt de réponse\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"hIQOLx\":[\"Notifications de rapports\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"library.request.access\":[\"Demander l'accès\"],\"uLZGK+\":[\"Demander l'accès\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"u2Hh+Y\":[\"Demander le Réinitialisation du Mot de Passe | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"UMMxwo\":[\"Réinitialiser le Mot de Passe | Dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"s+MGs7\":[\"Ressources\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"Reprendre\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"xxCtZv\":[\"Lignes par page\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"tfDRzk\":[\"Enregistrer\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"XvjC4F\":[\"Enregistrement...\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"oOi11l\":[\"Défiler vers le bas\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"A1taO8\":[\"Rechercher\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"0sQPzI\":[\"À bientôt\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"JlFcis\":[\"Envoyer\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Nom de la Séance\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"PErdpz\":[\"Paramètres | Dembrane\"],\"Z8lGw6\":[\"Partager\"],\"/XNQag\":[\"Partager ce rapport\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"Dc7GM4\":[\"Partager votre voix\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"yrhNQG\":[\"Afficher la durée\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"6Uau97\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"AS7WoE\":[\"Commencer de zéro\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"uAQUqI\":[\"Statut\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"kimwwT\":[\"Planification Stratégique\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succès\"],\"bh1eKt\":[\"Suggéré:\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"OYHzN1\":[\"Étiquettes\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template appliqué\"],\"iTylMl\":[\"Modèles\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"hTCMdd\":[\"Le résumé est en cours de génération. Attends qu’il soit disponible.\"],\"+AT8nl\":[\"Le résumé est en cours de régénération. Attends qu’il soit disponible.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"FEr96N\":[\"Thème\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"9ww6ML\":[\"Cette page est affichée après que le participant ait terminé la conversation.\"],\"1gmHmj\":[\"Cette page est affichée aux participants lorsqu'ils commencent une conversation après avoir réussi à suivre le tutoriel.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"Ww6cQ8\":[\"Date de création\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"MHrjPM\":[\"Titre\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcription en cours...\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"qJb6G2\":[\"Réessayer\"],\"eP1iDc\":[\"Tu peux demander\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"1MTTTw\":[\"Raison inconnue\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"jlrVDp\":[\"Conversation sans titre\"],\"EkH9pt\":[\"Mettre à jour\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"kwkhPe\":[\"Mettre à niveau\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"ONWvwQ\":[\"Télécharger\"],\"UN8G93\":[\"Téléchargez un logo personnalisé pour remplacer le logo dembrane sur le portail, le tableau de bord, les rapports et le guide de l'hôte.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"S2LyQ+\":[\"Utilisation du logo dembrane par défaut\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"jpctdh\":[\"Vue\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"D4e7re\":[\"Voir vos réponses\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"SrJOPD\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"dni8nq\":[\"Nous vous envoyerons un message uniquement si votre hôte génère un rapport, nous ne partageons jamais vos informations avec personne. Vous pouvez vous désinscrire à tout moment.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"fwEAk/\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"AKBU2w\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"7t3vo1\":[\"Lorsque tout l'audio a été converti en texte et que le transcript complet est disponible\"],\"N0GETg\":[\"Quand sont déclenchés les webhooks ?\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"kWJmRL\":[\"Vous\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"5PKg7S\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"ycR/52\":[\"Activer Echo\"],\"mKGCnZ\":[\"Activer ECHO\"],\"Dh2kHP\":[\"Activer la réponse\"],\"d9rIJ1\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 551b5994..dff54b46 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -1188,7 +1188,7 @@ msgstr "Choose your preferred theme for the interface" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Click \"Upload Files\" when you're ready to start the upload process." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Click to edit" @@ -1666,7 +1666,7 @@ msgstr "Download Transcript Options" msgid "Drag audio files here or click to select files" msgstr "Drag audio files here or click to select files" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Drag to reorder" @@ -1797,7 +1797,7 @@ msgstr "Enable Explore" #~ msgid "Enable Make it concrete" #~ msgstr "Enable Make it concrete" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Enable participation" @@ -2345,6 +2345,10 @@ msgstr "Go back" #~ msgid "Go deeper" #~ msgstr "Go deeper" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Go Fullscreen" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Go home" @@ -3378,7 +3382,7 @@ msgstr "Preparing your experience" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Preview: The quick brown fox jumps over the lazy dog." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "Print / Save PDF" @@ -3731,7 +3735,7 @@ msgstr "Requesting microphone access to detect available devices..." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Requires \"Ask for Email?\" to be enabled" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Reset" @@ -3811,7 +3815,7 @@ msgstr "Revise" msgid "Revision #{revisionNumber}" msgstr "Revision #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Right-click to highlight" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index 76aee704..301a7a53 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspects\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"DX/Wkz\":[\"Account password\"],\"L5gswt\":[\"Action By\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"bruUug\":[\"Almost there\"],\"H7cfSV\":[\"Already added to this chat\"],\"xNyrs1\":[\"Already in context\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"QX6zrA\":[\"Analysis\"],\"F4cOH1\":[\"Analysis Language\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"announcements\":[\"Announcements\"],\"Dzr23X\":[\"Announcements\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"azfEQ3\":[\"Anonymous Participant\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"F+vBv0\":[\"Ask\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kskjVK\":[\"Assistant is typing...\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"participant.modal.interruption.issue.message\":[\"Attention! We lost the last 60 seconds or so of your recording due to some interruption. Please press the button below to reconnect.\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"IOBCIN\":[\"Audio Tip\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"/9nVLo\":[\"Back to Selection\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"MkvsWx\":[\"Book a call\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"dEgA5A\":[\"Cancel\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Cancel\"],\"participant.concrete.action.button.cancel\":[\"Cancel\"],\"participant.concrete.instructions.button.cancel\":[\"Cancel\"],\"select.all.modal.cancel\":[\"Cancel\"],\"add.tag.filter.modal.cancel\":[\"Cancel\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"0ngaDi\":[\"Citing the following sources\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"q+hNag\":[\"Collection\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"bD8I7O\":[\"Complete\"],\"6jBoE4\":[\"Concrete Topics\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"yjkELF\":[\"Confirm New Password\"],\"p2/GCq\":[\"Confirm Password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"WimHuY\":[\"Connection unhealthy\"],\"DFFB2t\":[\"Contact sales\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"participant.button.continue\":[\"Continue\"],\"xGVfLh\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"y1eoq1\":[\"Copy link\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"CSQPC0\":[\"Create an Account\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"bsfMt3\":[\"Create Report\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"45O6zJ\":[\"Created on\"],\"yOrQ4N\":[\"Current logo\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"ZQKLI1\":[\"Danger Zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"2DzmAq\":[\"Delete Conversation\"],\"++iDlT\":[\"Delete Project\"],\"zdyslo\":[\"Delete Webhook\"],\"+m7PfT\":[\"Deleted successfully\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane is powered by AI. Please double-check responses.\"],\"67znul\":[\"Reply\"],\"Nu4oKW\":[\"Description\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"fDGgw4\":[\"Do I need this?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"5154Ap\":[\"Download All Transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"/8fAkm\":[\"Edit file name\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"wwiTff\":[\"Email Verification\"],\"Ih5qq/\":[\"Email Verification | Dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"Rsjgm0\":[\"Experimental\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"BVzTya\":[\"Failed to delete response\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"8LgIkO\":[\"Failed to start new conversation. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"RW4V7P\":[\"Failed to upload logo\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"o7J4JM\":[\"Filter\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"kODvZJ\":[\"First Name\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"cGeFup\":[\"Font Size\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"ziAjHi\":[\"Generate\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"gitFA/\":[\"Generate Summary\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"DDcvSo\":[\"German\"],\"u9yLe/\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"participant.refine.go.deeper.description\":[\"Get an immediate reply from dembrane to help you deepen the conversation.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"A3oCMz\":[\"Go to new conversation\"],\"5gqNQl\":[\"Grid view\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"Yae+po\":[\"Help us translate\"],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"g4tIdF\":[\"Hide revision data\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"How it works:\"],\"LSCWlh\":[\"How would you describe to a colleague what are you trying to accomplish with this project?\\n* What is the north star goal or key metric\\n* What does success look like\"],\"participant.button.i.understand\":[\"I understand\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"1xMiTU\":[\"IP Address\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"Lj7sBL\":[\"Italian\"],\"clXffu\":[\"Join \",[\"0\"],\" on Dembrane\"],\"uocCon\":[\"Just a moment\"],\"OSBXx5\":[\"Just now\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"PIhnIP\":[\"Let us know!\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"yUQgLY\":[\"Library is currently being processed\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Preview\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"FUK4WT\":[\"Loading microphones...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"z0t9bb\":[\"Login\"],\"zfB1KW\":[\"Login | Dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"2cm4WM\":[\"Logo removed\"],\"WXSxpf\":[\"Logo updated successfully\"],\"nOhz3x\":[\"Logout\"],\"jWXlkr\":[\"Longest First\"],\"JSxZVX\":[\"Mark all read\"],\"+s1J8k\":[\"Mark as read\"],\"VxyuRJ\":[\"Meeting Notes\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Mode\"],\"zMx0gF\":[\"More templates\"],\"QWdKwH\":[\"Move\"],\"CyKTz9\":[\"Move Conversation\"],\"wUTBdx\":[\"Move to Another Project\"],\"Ksvwy+\":[\"Move to Project\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"c5Xt89\":[\"Name Z-A\"],\"isRobC\":[\"New\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"7vhWI8\":[\"New Password\"],\"+VXUp8\":[\"New Project\"],\"+RfVvh\":[\"Newest First\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"hXzOVo\":[\"Next\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"riwuXX\":[\"No actions found\"],\"WsI5bo\":[\"No announcements available\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"Qqhl3R\":[\"No collections found\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"meAa31\":[\"No conversations yet\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"ctlSnm\":[\"No report found\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"2h9aae\":[\"No verification topics available.\"],\"pdWSGS\":[\"No verify topics available.\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"cH5kXP\":[\"Now\"],\"9+6THi\":[\"Oldest First\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"conversation.ongoing\":[\"Ongoing\"],\"J6n7sl\":[\"Ongoing\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"NRLF9V\":[\"Open Documentation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"Open troubleshooting guide\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"LLAa/9\":[\"Optional\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0zpgxV\":[\"Options\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"6WdDG7\":[\"Page\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"rMCv1T\":[\"Participant name and email\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"8ZsakT\":[\"Password\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"IgrLD/\":[\"Pause\"],\"PTSHeg\":[\"Pause reading\"],\"UbRKMZ\":[\"Pending\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"uRFMMc\":[\"Portal Content\"],\"qVypVJ\":[\"Portal Editor\"],\"g2UNkE\":[\"Powered by\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"UoByX/\":[\"Print / Save PDF\"],\"ANWB5x\":[\"Print this report\"],\"zwqetg\":[\"Privacy Statements\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"Hie0VV\":[\"Project Created\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"xJMpjP\":[\"Project Library | Dembrane\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"hjaZqm\":[\"Project Overview\"],\"Jbf9pq\":[\"Project Overview | Dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"Wsk5pi\":[\"Project Settings\"],\"+0B+ue\":[\"Projects\"],\"Eb7xM7\":[\"Projects | Dembrane\"],\"JQVviE\":[\"Projects Home\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"EEYbdt\":[\"Publish\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"wZxwNu\":[\"Read aloud\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"844H5I\":[\"Regenerate Library\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"wYz80B\":[\"Register | Dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"7dZnmw\":[\"Relevance\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"t/YqKh\":[\"Remove\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"CJgPtd\":[\"Remove from this chat\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"XyN13i\":[\"Reply Prompt\"],\"gjpdaf\":[\"Report\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"hIQOLx\":[\"Report Notifications\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"library.request.access\":[\"Request Access\"],\"uLZGK+\":[\"Request Access\"],\"dglEEO\":[\"Request Password Reset\"],\"u2Hh+Y\":[\"Request Password Reset | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"Requesting microphone access to detect available devices...\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"KbS2K9\":[\"Reset Password\"],\"UMMxwo\":[\"Reset Password | Dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"s+MGs7\":[\"Resources\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"Resume\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"H1Pyjd\":[\"Retry Upload\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"UZVWVb\":[\"Review files before uploading\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Right-click to highlight\"],\"xxCtZv\":[\"Rows per page\"],\"participant.concrete.action.button.save\":[\"Save\"],\"tfDRzk\":[\"Save\"],\"IUwGEM\":[\"Save Changes\"],\"2VA/7X\":[\"Save Error!\"],\"XvjC4F\":[\"Saving...\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"oOi11l\":[\"Scroll to bottom\"],\"select.all.modal.loading.search\":[\"Search\"],\"A1taO8\":[\"Search\"],\"OWm+8o\":[\"Search conversations\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"RVZJWQ\":[\"Search projects...\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"0sQPzI\":[\"See you soon\"],\"1ZTiaz\":[\"Segments\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"o4e/70\":[\"Select at least one event\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"JlFcis\":[\"Send\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"VTmyvi\":[\"Sentiment\"],\"NprC8U\":[\"Session Name\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"PErdpz\":[\"Settings | Dembrane\"],\"Z8lGw6\":[\"Share\"],\"/XNQag\":[\"Share this report\"],\"oX3zgA\":[\"Share your details here\"],\"Dc7GM4\":[\"Share your voice\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"yrhNQG\":[\"Show duration\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"dbWo0h\":[\"Sign in with Google\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"6Uau97\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"u7yVRn\":[\"Sources:\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"AS7WoE\":[\"Start fresh\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"pHVkqA\":[\"Start Recording\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategic Planning\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"0Pd4R1\":[\"Submitted via text input\"],\"zzDlyQ\":[\"Success\"],\"bh1eKt\":[\"Suggested:\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"OYHzN1\":[\"Tags\"],\"nlxlmH\":[\"Take some time to create an outcome that makes your contribution concrete or get an immediate reply from dembrane to help you deepen the conversation.\"],\"eyu39U\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"participant.refine.make.concrete.description\":[\"Take some time to create an outcome that makes your contribution concrete.\"],\"QCchuT\":[\"Template applied\"],\"iTylMl\":[\"Templates\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"bWqoQ6\":[\"the project library.\"],\"hTCMdd\":[\"The summary is being generated. Please wait for it to be available.\"],\"+AT8nl\":[\"The summary is being regenerated. Please wait for it to be available.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"FEr96N\":[\"Theme\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"Ed99mE\":[\"Thinking...\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"9ww6ML\":[\"This page is shown after the participant has completed the conversation.\"],\"1gmHmj\":[\"This page is shown to participants when they start a conversation after they successfully complete the tutorial.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"Ww6cQ8\":[\"Time Created\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"MHrjPM\":[\"Title\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"fp5rKh\":[\"Transcribing...\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Try Again\"],\"eP1iDc\":[\"Try asking\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"1MTTTw\":[\"Unknown reason\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"jlrVDp\":[\"Untitled Conversation\"],\"EkH9pt\":[\"Update\"],\"3RboBp\":[\"Update Report\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"kwkhPe\":[\"Upgrade\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"ONWvwQ\":[\"Upload\"],\"UN8G93\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"8XD6tj\":[\"Upload Audio\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"S2LyQ+\":[\"Using default dembrane logo\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"Iv1iWN\":[\"verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"w6Mgbs\":[\"Verify Topics\"],\"jpctdh\":[\"View\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"D4e7re\":[\"View your responses\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Want to add a template to \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"SrJOPD\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"dni8nq\":[\"We will only send you a message if your host generates a report, we never share your details with anyone. You can opt out at any time.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"fwEAk/\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"AKBU2w\":[\"Welcome to Dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"vv/EFG\":[\"What data is sent?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"KcnIXL\":[\"will be included in your report\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"kWJmRL\":[\"You\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index cf0869dc..044b26dd 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -1024,7 +1024,7 @@ msgstr "Kies je favoriete thema voor de interface" msgid "Click \"Upload Files\" when you're ready to start the upload process." msgstr "Klik op \"Upload bestanden\" wanneer je klaar bent om de upload te starten." -#: src/routes/project/HostGuidePage.tsx:1385 +#: src/routes/project/HostGuidePage.tsx:1402 msgid "Click to edit" msgstr "Klik om te bewerken" @@ -1524,7 +1524,7 @@ msgstr "Sleep audio bestanden hierheen of klik om bestanden te selecteren" #~ msgid "Drag documents here or select files" #~ msgstr "Sleep documenten hierheen of selecteer bestanden" -#: src/routes/project/HostGuidePage.tsx:1397 +#: src/routes/project/HostGuidePage.tsx:1414 msgid "Drag to reorder" msgstr "Sleep om te herordenen" @@ -1650,7 +1650,7 @@ msgstr "Verkennen inschakelen" #~ msgid "Enable Make it concrete" #~ msgstr "Maak het concreet aanzetten" -#: src/routes/project/HostGuidePage.tsx:1563 +#: src/routes/project/HostGuidePage.tsx:1588 msgid "Enable participation" msgstr "Deelnemen inschakelen" @@ -2171,6 +2171,10 @@ msgstr "Terug" #~ msgid "Go deeper" #~ msgstr "Ga dieper" +#: src/routes/project/HostGuidePage.tsx:1451 +msgid "Go Fullscreen" +msgstr "Volledig scherm" + #: src/routes/404.tsx:17 msgid "Go home" msgstr "Ga naar home" @@ -3302,7 +3306,7 @@ msgstr "Uw ervaring voorbereiden" msgid "Preview: The quick brown fox jumps over the lazy dog." msgstr "Voorbeeld: De snelle bruine vos springt over de luiende hond." -#: src/routes/project/HostGuidePage.tsx:1426 +#: src/routes/project/HostGuidePage.tsx:1443 msgid "Print / Save PDF" msgstr "Afdrukken / PDF opslaan" @@ -3642,7 +3646,7 @@ msgstr "Microfoontoegang aanvragen om beschikbare apparaten te detecteren..." msgid "Requires \"Ask for Email?\" to be enabled" msgstr "Vraagt om e-mailadres? moet zijn ingeschakeld" -#: src/routes/project/HostGuidePage.tsx:1419 +#: src/routes/project/HostGuidePage.tsx:1436 msgid "Reset" msgstr "Resetten" @@ -3719,7 +3723,7 @@ msgstr "Aanpassen" msgid "Revision #{revisionNumber}" msgstr "Revisie #{revisionNumber}" -#: src/routes/project/HostGuidePage.tsx:1391 +#: src/routes/project/HostGuidePage.tsx:1408 msgid "Right-click to highlight" msgstr "Rechtsklikken om te markeren" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index 77fe32a6..3058caaa 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"w6Mgbs\":[\"Verifiëren Themen\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Experimentele functie\"],\"participant.button.go.deeper\":[\"Ga dieper\"],\"participant.button.make.concrete\":[\"Maak het concreet\"],\"select.all.modal.skip.reason\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"participant.modal.interruption.issue.description\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Ga dieper\"],\"participant.modal.refine.info.title.concrete\":[\"Maak het concreet\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"participant.modal.refine.info.title\":[\"Functie binnenkort beschikbaar\"],\"participant.refine.go.deeper\":[\"Ga dieper\"],\"participant.concrete.artefact.error.description\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"dashboard.dembrane.concrete.title\":[\"Maak het concreet\"],\"participant.refine.make.concrete\":[\"Maak het concreet\"],\"participant.button.refine\":[\"Verfijnen\"],\"participant.concrete.regenerating.artefact\":[\"Nieuwe tekst aan het maken…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Kies een concreet onderwerp\"],\"participant.go.deeper.generic.error.message\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"participant.concrete.artefact.error.title\":[\"Er ging iets mis met dit artefact\"],\"participant.modal.refine.info.reason\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"dashboard.dembrane.concrete.description\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"participant.concrete.instructions.approve.artefact\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"participant.concrete.instructions.loading\":[\"Instructies aan het laden…\"],\"participant.concrete.selection.button.next\":[\"Volgende\"],\"participant.concrete.instructions.button.next\":[\"Aan de slag\"],\"participant.concrete.instructions.revise.artefact\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"participant.concrete.instructions.read.aloud\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"dashboard.dembrane.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor verificatie.\"],\"participant.concrete.selection.title\":[\"Kies een concreet voorbeeld\"],\"participant.concrete.instructions.receive.artefact\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"participant.concrete.instructions.approval.helps\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"J/hVSQ\":[[\"0\"]],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"pV+XPw\":[\"+5s\"],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"LeFXS1\":[\"0 Aspecten\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"L5gswt\":[\"Actie door\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"bruUug\":[\"Bijna klaar\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"xNyrs1\":[\"Al in context\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"QX6zrA\":[\"Analyse\"],\"F4cOH1\":[\"Analyse taal\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"announcements\":[\"meldingen\"],\"Dzr23X\":[\"Meldingen\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"F+vBv0\":[\"Stel vraag\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"participant.modal.interruption.issue.message\":[\"Let op! We hebben de laatste 60 seconden van je opname verloren door een onderbreking. Druk op de knop hieronder om opnieuw verbinding te maken.\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"IOBCIN\":[\"Audio-tip\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"/9nVLo\":[\"Terug naar selectie\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"GML8s7\":[\"Begin!\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"TGJVgd\":[\"Chat | Dembrane\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"8Q+lLG\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"q+hNag\":[\"Collectie\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"bD8I7O\":[\"Voltooid\"],\"6jBoE4\":[\"Concreet maken\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"WimHuY\":[\"Verbinding ongezond\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"participant.button.continue\":[\"Doorgaan\"],\"xGVfLh\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"he3ygx\":[\"Kopieer\"],\"y1eoq1\":[\"Kopieer link\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"CSQPC0\":[\"Maak een account aan\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"bsfMt3\":[\"Maak rapport\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"45O6zJ\":[\"Gemaakt op\"],\"yOrQ4N\":[\"Huidige logo\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"ZQKLI1\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"++iDlT\":[\"Verwijder project\"],\"zdyslo\":[\"Webhook verwijderen\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"p9tvm2\":[\"Echo\"],\"90wFaY\":[\"ECHO\"],\"Y7Si8i\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"67znul\":[\"Reactie\"],\"Nu4oKW\":[\"Beschrijving\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"5154Ap\":[\"Download alle transcripten\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"wwiTff\":[\"Email verificatie\"],\"Ih5qq/\":[\"Email verificatie | Dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"Rsjgm0\":[\"Experimenteel\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het verifiëren van de e-mailstatus. Probeer het opnieuw.\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"kODvZJ\":[\"Voornaam\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"cGeFup\":[\"Lettergrootte\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te verifiëren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"nLC6tu\":[\"Frans\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"ziAjHi\":[\"Genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"gitFA/\":[\"Samenvatting genereren\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"DDcvSo\":[\"Duits\"],\"u9yLe/\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"participant.refine.go.deeper.description\":[\"Krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"5gqNQl\":[\"Rasterweergave\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"Yae+po\":[\"Help ons te vertalen\"],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"i0qMbr\":[\"Home\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"LSCWlh\":[\"Hoe zou je een collega uitleggen wat je probeert te bereiken met dit project?\\n* Wat is het doel of belangrijkste maatstaf\\n* Hoe ziet succes eruit\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"CE+M2e\":[\"Info\"],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"1xMiTU\":[\"IP-adres\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"Lj7sBL\":[\"Italiaans\"],\"clXffu\":[\"Aansluiten \",[\"0\"],\" op Dembrane\"],\"uocCon\":[\"Gewoon een momentje\"],\"OSBXx5\":[\"Net zojuist\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"vXIe7J\":[\"Taal\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"yzF66j\":[\"Link\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"dF6vP6\":[\"Live\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"FUK4WT\":[\"Microfoons laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"z0t9bb\":[\"Inloggen\"],\"zfB1KW\":[\"Inloggen | Dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"2cm4WM\":[\"Logo verwijderd\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"jWXlkr\":[\"Langste eerst\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"VxyuRJ\":[\"Vergadernotities\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"zz/Wd/\":[\"Modus\"],\"zMx0gF\":[\"Meer templates\"],\"QWdKwH\":[\"Verplaatsen\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"c5Xt89\":[\"Naam Z-A\"],\"isRobC\":[\"Nieuw\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"+VXUp8\":[\"Nieuw project\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"riwuXX\":[\"Geen acties gevonden\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"cH5kXP\":[\"Nu\"],\"9+6THi\":[\"Oudste eerst\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"conversation.ongoing\":[\"Actief\"],\"J6n7sl\":[\"Actief\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"NRLF9V\":[\"Open documentatie\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"JoAjm8\":[\"Open host gids\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"LLAa/9\":[\"Optioneel\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0zpgxV\":[\"Opties\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"8ZsakT\":[\"Wachtwoord\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"UbRKMZ\":[\"In afwachting\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres verifiëren.\"],\"uRFMMc\":[\"Portal inhoud\"],\"qVypVJ\":[\"Portaal-editor\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"zwqetg\":[\"Privacy verklaring\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"Hie0VV\":[\"Project aangemaakt\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"xJMpjP\":[\"Inzichtenbibliotheek | Dembrane\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"hjaZqm\":[\"Project Overzicht\"],\"Jbf9pq\":[\"Project Overzicht | Dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"Wsk5pi\":[\"Project Instellingen\"],\"+0B+ue\":[\"Projecten\"],\"Eb7xM7\":[\"Projecten | Dembrane\"],\"JQVviE\":[\"Projecten Home\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"EEYbdt\":[\"Publiceren\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"eWLklq\":[\"Quotes\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"wZxwNu\":[\"Lees hardop voor\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"844H5I\":[\"Bibliotheek opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"wYz80B\":[\"Registreer | Dembrane\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"7dZnmw\":[\"Relevantie\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"hTDMBB\":[\"Pagina herladen\"],\"t/YqKh\":[\"Verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"XyN13i\":[\"Reactie prompt\"],\"gjpdaf\":[\"Rapport\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"library.request.access\":[\"Toegang aanvragen\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"u2Hh+Y\":[\"Wachtwoord reset aanvragen | Dembrane\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"UMMxwo\":[\"Wachtwoord resetten | Dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"s+MGs7\":[\"Bronnen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"xxCtZv\":[\"Rijen per pagina\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"tfDRzk\":[\"Opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"XvjC4F\":[\"Opslaan...\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"oOi11l\":[\"Scroll naar beneden\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"A1taO8\":[\"Zoeken\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"0sQPzI\":[\"Tot snel\"],\"1ZTiaz\":[\"Segmenten\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"JlFcis\":[\"Verzenden\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"VTmyvi\":[\"Gevoel\"],\"NprC8U\":[\"Sessienaam\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"PErdpz\":[\"Instellingen | Dembrane\"],\"Z8lGw6\":[\"Delen\"],\"/XNQag\":[\"Dit rapport delen\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"Dc7GM4\":[\"Deel je stem\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"yrhNQG\":[\"Toon duur\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"dbWo0h\":[\"Inloggen met Google\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"6Uau97\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"u7yVRn\":[\"Bronnen:\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"pHVkqA\":[\"Opname starten\"],\"uAQUqI\":[\"Status\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"kimwwT\":[\"Strategische Planning\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"zzDlyQ\":[\"Succes\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"OYHzN1\":[\"Trefwoorden\"],\"nlxlmH\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"participant.refine.make.concrete.description\":[\"Neem even de tijd om een resultaat te creëren dat je bijdrage concreet maakt.\"],\"QCchuT\":[\"Template toegepast\"],\"iTylMl\":[\"Sjablonen\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"FEr96N\":[\"Thema\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het verifiëren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"Ed99mE\":[\"Denken...\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"9ww6ML\":[\"Deze pagina wordt getoond na het voltooien van het gesprek door de deelnemer.\"],\"1gmHmj\":[\"Deze pagina wordt getoond aan deelnemers wanneer ze een gesprek starten na het voltooien van de tutorial.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"MHrjPM\":[\"Titel\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"1MTTTw\":[\"Onbekende reden\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"EkH9pt\":[\"Bijwerken\"],\"3RboBp\":[\"Bijwerken rapport\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"kwkhPe\":[\"Upgraden\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"ONWvwQ\":[\"Uploaden\"],\"UN8G93\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"8XD6tj\":[\"Audio uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"S2LyQ+\":[\"Gebruik standaard dembrane-logo\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code verifiëren\"],\"w6Mgbs\":[\"Verifiëren Themen\"],\"jpctdh\":[\"Weergave\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"Px9INg\":[\"Wil je een template toevoegen aan \\\"Dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"dni8nq\":[\"We sturen u alleen een bericht als uw gastgever een rapport genereert, we delen uw gegevens niet met iemand. U kunt op elk moment afmelden.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"fwEAk/\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"AKBU2w\":[\"Welkom bij Dembrane!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"kWJmRL\":[\"Jij\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"890UpZ\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"5PKg7S\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"ycR/52\":[\"Echo inschakelen\"],\"mKGCnZ\":[\"ECHO inschakelen\"],\"Dh2kHP\":[\"Reactie inschakelen\"],\"d9rIJ1\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"NoNwIX\":[\"Inactief\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"0wdd7X\":[\"Aansluiten\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pauze\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te verifiëren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"pmt7u4\":[\"Werkruimtes\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/routes/project/HostGuidePage.tsx b/echo/frontend/src/routes/project/HostGuidePage.tsx index 4679549a..04220f1a 100644 --- a/echo/frontend/src/routes/project/HostGuidePage.tsx +++ b/echo/frontend/src/routes/project/HostGuidePage.tsx @@ -18,7 +18,9 @@ import { import { CSS } from "@dnd-kit/utilities"; import { Trans } from "@lingui/react/macro"; import { ActionIcon, Box, Button, Group, Text } from "@mantine/core"; +import { useWindowEvent } from "@mantine/hooks"; import { + IconArrowsMaximize, IconGripVertical, IconPlus, IconPrinter, @@ -147,10 +149,13 @@ const highlightKeywords = ( const pattern = new RegExp(`\\b(${escaped.join("|")})\\b`, "g"); const parts = text.split(pattern); - return parts.map((part, i) => { + return parts.map((part) => { if (allKeywords.includes(part)) { return ( - + {part} ); @@ -974,7 +979,7 @@ type ContextMenuState = { export const HostGuidePage = () => { const { projectId } = useParams(); - const [toolbarVisible, setToolbarVisible] = useState(false); + const [isFullscreen, setIsFullscreen] = useState(false); const [showLiveRecordings, setShowLiveRecordings] = useState(() => { try { const saved = localStorage.getItem("host-guide-live-toggle"); @@ -1267,21 +1272,18 @@ export const HostGuidePage = () => { setContextMenu(null); }; - // Close context menu on click outside or escape - useEffect(() => { - const handleClick = () => setContextMenu(null); - const handleKeyDown = (e: KeyboardEvent) => { - if (e.key === "Escape") setContextMenu(null); - }; - if (contextMenu) { - document.addEventListener("click", handleClick); - document.addEventListener("keydown", handleKeyDown); + // Close context menu on click outside + useWindowEvent("click", () => { + if (contextMenu) setContextMenu(null); + }); + + // Close context menu on Escape, exit fullscreen on Escape + useWindowEvent("keydown", (event) => { + if (event.key === "Escape") { + if (contextMenu) setContextMenu(null); + if (isFullscreen) setIsFullscreen(false); } - return () => { - document.removeEventListener("click", handleClick); - document.removeEventListener("keydown", handleKeyDown); - }; - }, [contextMenu]); + }); // DnD Kit setup const sensors = useSensors( @@ -1354,19 +1356,36 @@ export const HostGuidePage = () => { flexDirection: "column", minHeight: "100vh", padding: space.page, + paddingTop: isFullscreen ? space.page : `calc(${space.page} + 48px)`, + transition: "padding-top 0.2s", }} > - {/* Floating toolbar */} + {/* Fullscreen exit zone — thin invisible strip at top edge */} + {isFullscreen && ( +
setIsFullscreen(false)} + style={{ + height: "6px", + left: 0, + position: "fixed", + right: 0, + top: 0, + zIndex: 1001, + }} + /> + )} + + {/* Permanent header toolbar */} setToolbarVisible(true)} - onMouseLeave={() => setToolbarVisible(false)} style={{ - height: toolbarVisible ? "auto" : "32px", left: 0, position: "fixed", right: 0, top: 0, + transform: isFullscreen ? "translateY(-100%)" : "translateY(0)", + transition: "transform 0.2s", zIndex: 1000, }} > @@ -1377,8 +1396,6 @@ export const HostGuidePage = () => { backgroundColor: "white", boxShadow: "0 1px 4px rgba(0,0,0,0.1)", padding: "10px 16px", - transform: toolbarVisible ? "translateY(0)" : "translateY(-100%)", - transition: "transform 0.2s", }} > @@ -1425,6 +1442,14 @@ export const HostGuidePage = () => { > Print / Save PDF +